Uses of Class
com.metsci.glimpse.core.painter.track.Point
-
Packages that use Point Package Description com.metsci.glimpse.core.painter.geo Painters which draw plot elements for creating geographic display.com.metsci.glimpse.core.painter.track Track visualization painters. -
-
Uses of Point in com.metsci.glimpse.core.painter.geo
Methods in com.metsci.glimpse.core.painter.geo that return types with arguments of type Point Modifier and Type Method Description Collection<Point>
LatLonTrackPainter. getGeoRange(LatLonGeo minLatLon, LatLonGeo maxLatLon)
Collection<Point>
LatLonTrackPainter. getTimeGeoRange(long minTime, long maxTime, LatLonGeo minLatLon, LatLonGeo maxLatLon)
Collection<Point>
LatLonTrackPainter. getTimeGeoRange(LatLonGeo minLatLon, LatLonGeo maxLatLon)
-
Uses of Point in com.metsci.glimpse.core.painter.track
Fields in com.metsci.glimpse.core.painter.track with type parameters of type Point Modifier and Type Field Description static Comparator<Point>
TrackPainter. comparator
Methods in com.metsci.glimpse.core.painter.track that return Point Modifier and Type Method Description Point
TrackPainter. getNearestPoint(Axis2D axis, double centerX, double centerY, int maxPixelDistance)
Returns the closest point to the cursor position.Point
TrackPainter. getNearestPoint(Axis2D axis, int centerPixelX, int centerPixelY, int maxPixelDistance)
Returns the closest point to the cursor position.Point
TrackPainter. getNearestPoint(GlimpseMouseEvent mouseEvent, int maxPixelDistance)
Returns the closest Point to the mouse position specified in the given GlimpseMouseEvent.Point
TrackPainter. getTrackHead(Object trackId)
Methods in com.metsci.glimpse.core.painter.track that return types with arguments of type Point Modifier and Type Method Description Collection<Point>
TrackPainter. getGeoRange(double minX, double maxX, double minY, double maxY)
Returns all Points within the given bounding box in axis coordinates (regardless of time stamp).Collection<Point>
TrackPainter. getPixelRange(Axis2D axis, double centerX, double centerY, int pixelWidth, int pixelHeight)
Returns all the Points within the bounding box specified with a center in axis coordinates and width/height specified in pixels.static Comparator<Point>
Point. getTimeComparator()
Collection<Point>
TrackPainter. getTimeGeoRange(double minX, double maxX, double minY, double maxY)
Collection<Point>
TrackPainter. getTimeGeoRange(double minTime, double maxTime, double minX, double maxX, double minY, double maxY)
Collection<Point>
TrackPainter. getTimeGeoRange(long minTime, long maxTime, double minX, double maxX, double minY, double maxY)
Collection<Point>
TrackPainter. getTimePixelRange(Axis2D axis, double minTime, double maxTime, double centerX, double centerY, int pixelWidth, int pixelHeight)
Collection<Point>
TrackPainter. getTrackHeads()
Method parameters in com.metsci.glimpse.core.painter.track with type arguments of type Point Modifier and Type Method Description void
TrackPainter. addPoints(Object trackId, List<Point> points)
void
TrackPainter. addSpatialSelectionListener(Axis2D axis, SpatialSelectionListener<Point> listener)
void
TrackPainter. addTemporalSelectionListener(TemporalSelectionListener<Point> listener)
void
TrackPainter. removeTemporalSelectionListener(TemporalSelectionListener<Point> listener)
Constructor parameters in com.metsci.glimpse.core.painter.track with type arguments of type Point Constructor Description SpatialSelectionAxisListener(TrackPainter painter, SpatialSelectionListener<Point> listener)
-