Home
last modified time | relevance | path

Searched refs:SkyPoint (Results 1 – 25 of 216) sorted by relevance

123456789

/dports/astro/kstars/kstars-3.5.6/kstars/tools/
H A Dstarhopper.h14 class SkyPoint; variable
37 …QList<StarObject *> *computePath(const SkyPoint &src, const SkyPoint &dest, float fov__, float mag…
42 …QList<const StarObject *> computePath_const(const SkyPoint &src, const SkyPoint &dest, float fov_,…
54 float cost(const SkyPoint *curr, const SkyPoint *next);
60 void reconstructPath(SkyPoint const *curr_node);
66 SkyPoint const *start { nullptr };
67 SkyPoint const *end { nullptr };
68 QHash<const SkyPoint *, const SkyPoint *> came_from; // Used by the A* search algorithm
70 …QHash<SkyPoint const *, QString> patternNames; // if patterns were identified, they are added to t…
H A Dstarhopper.cpp16 QList<StarObject *> *StarHopper::computePath(const SkyPoint &src, const SkyPoint &dest, float fov__… in computePath()
28 QList<const StarObject *> StarHopper::computePath_const(const SkyPoint &src, const SkyPoint &dest, … in computePath_const()
41 QList<SkyPoint const *> cSet; in computePath_const()
42 QList<SkyPoint const *> oSet; in computePath_const()
43 QHash<SkyPoint const *, double> g_score; in computePath_const()
44 QHash<SkyPoint const *, double> f_score; in computePath_const()
45 QHash<SkyPoint const *, double> h_score; in computePath_const()
60 SkyPoint const *curr_node = nullptr; in computePath_const()
63 foreach (const SkyPoint *sp, oSet) in computePath_const()
145 SkyPoint *CurrentNode = const_cast<SkyPoint *>(curr_node); in computePath_const()
[all …]
H A Deyepiecefield.h28 class SkyPoint; variable
53 …void showEyepieceField(SkyPoint *sp, FOV const *const fov = nullptr, const QString &imagePath = QS…
64 void showEyepieceField(SkyPoint *sp, const double fovWidth, double fovHeight = -1.0,
82 …static void generateEyepieceView(SkyPoint *sp, QImage *skyChart, QImage *skyImage = nullptr, doubl…
89 static void generateEyepieceView(SkyPoint *sp, QImage *skyChart, QImage *skyImage = nullptr,
114 …static void renderEyepieceView(SkyPoint *sp, QPixmap *renderChart, double fovWidth = -1.0, double …
125 static dms findNorthAngle(const SkyPoint *sp, const dms *lat);
166 SkyPoint *m_sp { nullptr };
/dports/astro/kstars/kstars-3.5.6/kstars/skyobjects/
H A Dskypoint.cpp53 SkyPoint::SkyPoint() in SkyPoint() function in SkyPoint
257 SkyPoint SkyPoint::deprecess(const KSNumbers *num, long double epoch) in deprecess()
259 SkyPoint p1(RA, Dec); in deprecess()
371 SkyPoint SkyPoint::moveAway(const SkyPoint &from, double dist) const in moveAway()
425 bool SkyPoint::bendlight() in bendlight()
710 SkyPoint SkyPoint::catalogueCoord(long double jdf) in catalogueCoord()
731 SkyPoint sp(RA0, Dec0); in catalogueCoord()
868 SkyPoint SkyPoint::Eterms(void) in Eterms()
953 SkyPoint aux; in vRSun()
1076 static double corrCrit = SkyPoint::refractionCorr(SkyPoint::altCrit); in refract()
[all …]
H A Dskypoint.h44 class SkyPoint
70 SkyPoint();
72 virtual ~SkyPoint() = default;
409 SkyPoint catalogueCoord(long double jdf);
444 SkyPoint deprecess(const KSNumbers *num, long double epoch = J2000);
473 SkyPoint Eterms(void);
542 inline bool operator==(SkyPoint &p) const
644 SkyPoint moveAway(const SkyPoint &from, double dist) const;
710 …static SkyPoint timeTransformed(const SkyPoint *p, const KStarsDateTime &dt, const GeoLocation *ge…
769 Q_DECLARE_METATYPE(SkyPoint)
[all …]
H A Dskyline.h38 void append(SkyPoint *p);
44 inline SkyPoint *point(int i) const { return m_pList[i]; } in point()
46 inline QList<SkyPoint *> &points() { return m_pList; } in points()
57 void setPoint(int i, SkyPoint *p);
69 QList<SkyPoint *> m_pList;
H A Dskyline.cpp25 void SkyLine::append(SkyPoint *p) in append()
27 m_pList.append(new SkyPoint(*p)); in append()
30 void SkyLine::setPoint(int i, SkyPoint *p) in setPoint()
48 SkyPoint *p1 = m_pList[i]; in angularSize()
49 SkyPoint *p2 = m_pList[i + 1]; in angularSize()
69 foreach (SkyPoint *p, m_pList) in update()
/dports/astro/kstars/kstars-3.5.6/kstars/skycomponents/
H A Dskymesh.h20 class SkyPoint; variable
115 void aperture(SkyPoint *center, double radius, MeshBufNum_t bufNum = DRAW_BUF);
119 Trixel index(const SkyPoint *p);
127 const SkyRegion &skyRegion(const SkyPoint &p1, const SkyPoint &p2);
188 void index(const SkyPoint *center, double radius, MeshBufNum_t bufNum = DRAW_BUF);
193 void index(const SkyPoint *p1, const SkyPoint *p2);
198 void index(const SkyPoint *p1, const SkyPoint *p2, const SkyPoint *p3);
203 void index(const SkyPoint *p1, const SkyPoint *p2, const SkyPoint *p3, const SkyPoint *p4);
H A Dskymesh.cpp70 SkyPoint p2 = p1; in aperture()
113 void SkyMesh::index(const SkyPoint *p1, const SkyPoint *p2) in index()
118 void SkyMesh::index(const SkyPoint *p1, const SkyPoint *p2, const SkyPoint *p3) in index()
124 void SkyMesh::index(const SkyPoint *p1, const SkyPoint *p2, const SkyPoint *p3, const SkyPoint *p4) in index()
147 SkyPoint *pThis, *pLast; in indexStarLine()
175 SkyPoint *pThis, *pLast; in indexLine()
371 const SkyRegion &SkyMesh::skyRegion(const SkyPoint &_p1, const SkyPoint &_p2) in skyRegion()
373 std::shared_ptr<SkyPoint> p1(new SkyPoint(_p1)); in skyRegion()
374 std::shared_ptr<SkyPoint> p2(new SkyPoint(_p2)); in skyRegion()
375 std::shared_ptr<SkyPoint> p3(new SkyPoint(p1->ra(), p2->dec())); in skyRegion()
[all …]
/dports/astro/kstars/kstars-3.5.6/kstars/projections/
H A Dprojector.h44 SkyPoint *focus;
125 virtual Eigen::Vector2f toScreenVec(const SkyPoint *o, bool oRefract = true,
133 …QPointF toScreen(const SkyPoint *o, bool oRefract = true, bool *onVisibleHemisphere = nullptr) con…
143 …virtual SkyPoint fromScreen(const QPointF &p, dms *LST, const dms *lat, bool onlyAltAz = false) co…
149 QPointF clipLine(SkyPoint *p1, SkyPoint *p2) const;
155 Eigen::Vector2f clipLineVec(SkyPoint *p1, SkyPoint *p2) const;
207 bool checkVisibility(const SkyPoint *p) const;
217 double findNorthPA(const SkyPoint *o, float x, float y) const;
235 …virtual QVector<Eigen::Vector2f> groundPoly(SkyPoint *labelpoint = nullptr, bool *drawLabel = null…
290 static SkyPoint pointAt(double az);
H A Dprojector.cpp17 void toXYZ(const SkyPoint *p, double *x, double *y, double *z) in toXYZ()
29 SkyPoint Projector::pointAt(double az) in pointAt()
31 SkyPoint p; in pointAt()
108 QPointF Projector::clipLine(SkyPoint *p1, SkyPoint *p2) const in clipLine()
113 Eigen::Vector2f Projector::clipLineVec(SkyPoint *p1, SkyPoint *p2) const in clipLineVec()
124 SkyPoint mid; in clipLineVec()
183 bool Projector::checkVisibility(const SkyPoint *p) const in checkVisibility()
246 SkyPoint test(o->ra().Hours(), newDec); in findNorthPA()
301 SkyPoint p = pointAt(az); in groundPoly()
437 SkyPoint result; in fromScreen()
[all …]
/dports/astro/kstars/kstars-3.5.6/kstars/
H A Dskymap.h113 SkyPoint *focus() in focus()
125 SkyPoint *destination() in destination()
139 SkyPoint *focusPoint() in focusPoint()
147 void setFocus(SkyPoint *f);
194 void setFocusPoint(SkyPoint *f) in setFocusPoint()
207 SkyPoint *clickedPoint() in clickedPoint()
217 SkyPoint *mousePoint() in mousePoint()
355 SkyPoint getCenterPoint();
556 void positionChanged(SkyPoint *);
562 void positionClicked(SkyPoint *);
[all …]
H A Dskymaplite.h125 SkyPoint *focus() in focus()
135 SkyPoint *destination() in destination()
149 SkyPoint *focusPoint() in focusPoint()
157 void setFocus(SkyPoint *f);
204 void setFocusPoint(SkyPoint *f) in setFocusPoint()
217 SkyPoint *clickedPoint() in clickedPoint()
225 void setClickedPoint(SkyPoint *f);
545 void mousePointChanged(SkyPoint *);
548 void positionClicked(SkyPoint *);
698 SkyPoint m_MousePoint;
[all …]
H A Dskypainter.h26 class SkyPoint; variable
82 virtual void drawSkyLine(SkyPoint *a, SkyPoint *b) = 0;
118 virtual bool drawPointSource(const SkyPoint *loc, float mag, char sp = 'A') = 0;
157 virtual void drawHorizon(bool filled, SkyPoint *labelPoint = nullptr,
H A Dskyglpainter.h24 bool drawPointSource(const SkyPoint *loc, float mag, char sp = 'A') override;
28 void drawSkyLine(SkyPoint *a, SkyPoint *b) override;
36 void drawHorizon(bool filled, SkyPoint *labelPoint = nullptr,
45 bool addItem(SkyPoint *p, int type, float width, char sp = 'a');
/dports/astro/kstars/kstars-3.5.6/Tests/skyobjects/
H A Dtest_skypoint.cpp176 SkyPoint ccd; in compareNovas()
213 SkyPoint sp; in testPrecess()
245 SkyPoint sp; in testPrecessFromAnyEpoch()
254 SkyPoint spn = SkyPoint(sp.ra(), sp.dec()); in testPrecessFromAnyEpoch()
276 SkyPoint sp; in testNutate()
307 SkyPoint sp; in testAberrate()
350 SkyPoint sp; in testApparentCatalogue()
364 SkyPoint spn = SkyPoint(sp.ra(), sp.dec()); in testApparentCatalogue()
435 SkyPoint sp; in compareSkyPointLibNova()
509 void TestSkyPoint::compare(QString msg, SkyPoint *sp, SkyPoint *sp1) in compare()
[all …]
H A Dtest_skypoint.h34 void compare(QString msg, SkyPoint * sp);
35 void compare(QString msg, SkyPoint * sp, SkyPoint * sp1);
36 void compare(QString msg, SkyPoint * sp, ln_equ_posn * lnp);
/dports/astro/kstars/kstars-3.5.6/kstars/printing/
H A Dshfovexporter.h35 bool calculatePath(const SkyPoint &src, const SkyPoint &dest, double fov, double maglim);
50 void centerBetweenAndCapture(const SkyPoint &ptA, const SkyPoint &ptB);
54 SkyPoint m_Src;
55 SkyPoint m_Dest;
H A Dsimplefovexporter.h12 class SkyPoint; variable
44 void exportFov(SkyPoint *point, FOV *fov, QPaintDevice *pd);
65 …void exportFov(const QList<SkyPoint *> &points, const QList<FOV *> &fovs, const QList<QPaintDevice…
73 void exportFov(const QList<SkyPoint *> &points, FOV *fov, const QList<QPaintDevice *> &pds);
151 void pExportFov(SkyPoint *point, FOV *fov, QPaintDevice *pd);
162 SkyPoint *m_PrevPoint;
H A Dshfovexporter.cpp21 bool ShFovExporter::calculatePath(const SkyPoint &src, const SkyPoint &dest, double fov, double mag… in calculatePath()
67 void ShFovExporter::centerBetweenAndCapture(const SkyPoint &ptA, const SkyPoint &ptB) in centerBetweenAndCapture()
72 SkyPoint between(ra, dec); in centerBetweenAndCapture()
H A Dfovsnapshot.h34 FovSnapshot(const QPixmap &pixmap, const QString description, FOV *fov, const SkyPoint &center);
58 SkyPoint getCentralPoint() { return m_CentralPoint; } in getCentralPoint()
82 void setCentralPoint(const SkyPoint &point) { m_CentralPoint = point; } in setCentralPoint()
88 SkyPoint m_CentralPoint;
/dports/astro/kstars/kstars-3.5.6/kstars/ekos/align/
H A Dpoleaxis.h35 static Rotations::V3 dirCos(const SkyPoint sp);
56 static SkyPoint skyPoint(Rotations::V3 dc);
67 static Rotations::V3 poleAxis(SkyPoint p1, SkyPoint p2, SkyPoint p3);
H A Dpoleaxis.cpp63 Rotations::V3 PoleAxis::dirCos(const SkyPoint sp) in dirCos()
82 SkyPoint PoleAxis::skyPoint(Rotations::V3 dc) in skyPoint()
84 return SkyPoint(primary(dc), secondary(dc)); in skyPoint()
87 Rotations::V3 PoleAxis::poleAxis(SkyPoint p1, SkyPoint p2, SkyPoint p3) in poleAxis()
/dports/astro/kstars/kstars-3.5.6/kstars/indi/
H A Dinditelescope.h69 bool Slew(SkyPoint *ScopeTarget);
77 bool Sync(SkyPoint *ScopeTarget);
198 const SkyPoint &currentCoordinates() const in currentCoordinates()
213 bool sendCoords(SkyPoint *ScopeTarget);
224 void updateJ2000Coordinates(SkyPoint *coords);
242 void newTarget(SkyObject &currentObject, SkyPoint &currentCoords);
255 void newCoords(const SkyPoint &position, const PierSide pierside, const dms &ha);
262 SkyPoint currentCoords;
/dports/astro/kstars/kstars-3.5.6/kstars/auxiliary/
H A Dksdssdownloader.h20 class SkyPoint; variable
48 KSDssDownloader(const SkyPoint *const p, const QString &destFileName,
67 static QString getDSSURL(const SkyPoint *const p, const QString &version = "all",
74 …static QString getDSSURL(const SkyPoint *const p, float width, float height = 0, const QString &ve…
113 void startDownload(const SkyPoint *const p, const QString &destFileName);

123456789