Uses of Class
facets.util.geom.Point

Packages that use Point
facets.core.app.avatar Core types for custom viewers. 
facets.util.geom Plane geometry. 
 

Uses of Point in facets.core.app.avatar
 

Methods in facets.core.app.avatar that return Point
 Point ZoomPanViewWorks.focusAt()
           
 Point ZoomPanView.focusAt()
          The last position set with ZoomPanView.setFocusAt(Point).
 

Methods in facets.core.app.avatar with parameters of type Point
 java.lang.Object Pickable.checkCanvasHit(Point canvasAt, double hitGap)
           
abstract  java.lang.Object[] DragPolicy.newDragEdits(Point anchorAt, Point dragAt)
          Return suitable edits for the drop specified.
abstract  Painter[] DragPolicy.newDragPainters(Point anchorAt, Point dragAt)
          Return motion painters for the specified drag position.
 Line[][] PlaneViewWorks.newLineSets(Point at, double width, double height, int count)
          Generate sets of abstract lines.
 java.lang.Object[] DragPolicy.newSnapDropEdits(Point anchorAt, Point dragAt, Vector snapShift)
          Variant method for use in snapping.
 Painter[] DragPolicy.newSnapPainters(Point anchorAt, Point dragAt, Vector snapShift)
          Variant method for use in snapping.
 Line[] PlaneViewWorks.newTestLineSet(double scale, Point boxAt, double height, double width, int shiftCount)
           
 Painter PainterSource.pointMark(Point at, Shade fill, boolean pickable)
          Create a (maybe pickable) painter to mark a position.
 void ZoomPanViewWorks.setFocusAt(Point at)
           
 void ZoomPanView.setFocusAt(Point at)
          Set a position within the bounded plane that should appear as near as possible to the centre of the viewport.
 

Uses of Point in facets.util.geom
 

Fields in facets.util.geom declared as Point
 Point Line.from
           
 Point Line.to
           
 

Methods in facets.util.geom that return Point
 Point Point.newPoint()
           
 Point Point.shifted(Vector shift)
           
 

Methods in facets.util.geom with parameters of type Point
 double Point.distance(Point from)
           
 Vector Point.jumpFrom(Point point)
           
 void Point.rotate(Point about, Angle angle)
           
 

Constructors in facets.util.geom with parameters of type Point
Line(Point[] points)
           
Line(Point from, Point to)
           
Line(Point from, Point to, Shade color)
           
Point(Point src)