// Copyright (C) 1999-2018 // Smithsonian Astrophysical Observatory, Cambridge, MA, USA // For conditions of distribution and use, see copyright notice in "copyright" #include #include "basebox.h" #include "fitsimage.h" BaseBox::BaseBox(Base* p, const Vector& ctr, double ang) : BaseMarker(p, ctr, ang) { numPoints_ = 5; vertices_ = NULL; } BaseBox::BaseBox(Base* p, const Vector& ctr, double ang, const char* clr, int* dsh, int w, const char* f, const char* t, unsigned short prop, const char* c, const List& tag, const List& cb) : BaseMarker(p, ctr, ang, clr, dsh, w, f, t, prop, c, tag, cb) { numPoints_ = 5; vertices_ = NULL; } BaseBox::BaseBox(const BaseBox& a) : BaseMarker(a) { numPoints_ = a.numPoints_; vertices_ = NULL; } BaseBox::~BaseBox() { deleteVertices(); } void BaseBox::renderX(Drawable drawable, Coord::InternalSystem sys, RenderMode mode) { GC lgc = renderXGC(mode); newVertices(); for (int ii=0; iimapFromRef(vertices_[ii][jj],sys); pp[jj].x = (short)v[0]; pp[jj].y = (short)v[1]; } renderXDraw(drawable, lgc, pp, mode); delete [] pp; } deleteVertices(); } void BaseBox::renderXDraw(Drawable drawable, GC lgc, XPoint* pp, RenderMode mode) { XDrawLines(display, drawable, lgc, pp, numPoints_, CoordModeOrigin); } void BaseBox::renderPS(int mode) { renderPSGC(mode); newVertices(); for (int ii=0; iimapFromRef(vertices_[ii][jj],Coord::CANVAS); if (jj==0) str << "newpath " << v.TkCanvasPs(parent->canvas) << " moveto" << endl; else str << v.TkCanvasPs(parent->canvas) << " lineto" << endl; } str << "stroke" << endl << ends; Tcl_AppendResult(parent->interp, str.str().c_str(), NULL); } void BaseBox::renderPSFillDraw(int ii) { ostringstream str; for (int jj=0; jjmapFromRef(vertices_[ii][jj],Coord::CANVAS); if (jj==0) str << "newpath " << v.TkCanvasPs(parent->canvas) << " moveto" << endl; else str << v.TkCanvasPs(parent->canvas) << " lineto" << endl; } str << "fill" << endl << ends; Tcl_AppendResult(parent->interp, str.str().c_str(), NULL); } #ifdef MAC_OSX_TK void BaseBox::renderMACOSX() { renderMACOSXGC(); newVertices(); for (int ii=0; iimapFromRef(vertices_[ii][jj],Coord::CANVAS); macosxDrawLines(vv, numPoints_); delete [] vv; } deleteVertices(); } void BaseBox::renderMACOSXDraw(Vector* vv) { macosxDrawLines(vv, numPoints_); } #endif #ifdef __WIN32 void BaseBox::renderWIN32() { renderWIN32GC(); newVertices(); for (int ii=0; iimapFromRef(vertices_[ii][jj],Coord::CANVAS); win32DrawLines(vv, numPoints_); delete [] vv; } deleteVertices(); } void BaseBox::renderWIN32Draw(Vector* vv) { win32DrawLines(vv, numPoints_); } #endif // Support void BaseBox::updateHandles() { // handles are in canvas coords // we can't garantee that the radii have been sorted yet // also, annuli[i] could be negative if (handle) delete [] handle; handle = new Vector[numHandle]; Vector max; for(int ii=0; ii1) for (int ii=0; ii=ss[0]/2 || pp[1]<=-ss[1]/2 || pp[1]>ss[1]/2) return 0; else return 1; } Vector BaseBox::intersect(Vector rr, double aa) { // special cases if (!rr[0] || !rr[1]) return Vector(); double ang = zeroTWOPI(aa); double phi = rr.angle(); if (ang >= 0 && ang < phi) return Vector(rr[0],-rr[0]*tan(ang)); else if (ang >= phi && ang < M_PI-phi) return Vector(rr[1]/tan(ang),-rr[1]); else if (ang >= M_PI-phi && ang < M_PI+phi) return Vector(-rr[0],rr[0]*tan(ang)); else if (ang >= M_PI+phi && ang < M_TWOPI-phi) return Vector(-rr[1]/tan(ang),rr[1]); else return Vector(rr[0],-rr[0]*tan(ang)); } void BaseBox::newVertices() { if (vertices_) deleteVertices(); if (teq(startAng_,stopAng_-M_TWOPI,FLT_EPSILON)) newVerticesA(); else newVerticesB(); } void BaseBox::newVerticesA() { Matrix mm = fwdMatrix(); numPoints_ = 5; vertices_ = new Vector*[numAnnuli_+1]; for (int i=0; i=b1) && (a1b1) && (a2<=b2)) *s2 =1; if (((*s1) && (!(*s2))) || ((*s1) && (*s2))) vertBPrep(a1,a2,b1,b2,ii,cnt); if (*s1&&*s2) *s1=*s2=0; } void BaseBox::vertBPrep(double a1, double a2, double ll, double ul, int ii, int* cnt) { if (!(a1 >= ll) && (a1 <= ul)) a1 = ll; if (!(a2 >= ll) && (a2 <= ul)) a2 = ul; if (a1 > a2) { vertBSeg(ll,a2,ii,cnt); vertBSeg(a1,ul,ii,cnt); } else vertBSeg(a1,a2,ii,cnt); } void BaseBox::vertBSeg(double ang1, double ang2, int ii, int* cnt) { Vector rr = (annuli_[ii]/2).abs(); Matrix mm = fwdMatrix(); vertices_[ii][(*cnt)++] = intersect(rr,ang1)*mm; vertices_[ii][(*cnt)] = intersect(rr,ang2)*mm; } void BaseBox::deleteVertices() { if (vertices_) { for (int i=0; i