Draw2d
3.9.100.201405261516

Uses of Class
org.eclipse.draw2d.geometry.PointList

Packages that use PointList
org.eclipse.draw2d Primary package containing general interfaces and implementation classes. 
org.eclipse.draw2d.geometry Types representing or manipulating geometric values, such as Points, Dimensions, etc. 
org.eclipse.draw2d.graph Stand-alone algorithms related to Graph Drawing. 
 

Uses of PointList in org.eclipse.draw2d
 

Fields in org.eclipse.draw2d declared as PointList
static PointList PolygonDecoration.INVERTED_TRIANGLE_TIP
          Template for a triangle that points to the left when the rotation angle is 0
protected  PointList Triangle.triangle
          The points of the triangle.
static PointList PolygonDecoration.TRIANGLE_TIP
          Template for a triangle that points to the right when the rotation angle is 0
static PointList PolylineDecoration.TRIANGLE_TIP
          A triangle template
 

Methods in org.eclipse.draw2d that return PointList
protected  PointList ViewportAwareConnectionLayerClippingStrategy.getAbsolutePointsAsCopy(Connection connection)
          Returns the connection's points in absolute coordinates.
 PointList PolygonDecoration.getPoints()
          Returns the points in the PolygonDecoration as a PointList.
 PointList PolylineDecoration.getPoints()
           
 PointList Connection.getPoints()
          Returns the PointList containing the Points that make up this Connection.
 PointList AbstractPointListShape.getPoints()
          Returns the points in this figure by reference.
 PointList ScalablePolygonShape.getScaledPoints()
           
 

Methods in org.eclipse.draw2d with parameters of type PointList
 void SWTGraphics.drawPolygon(PointList points)
           
 void ScaledGraphics.drawPolygon(PointList points)
           
abstract  void Graphics.drawPolygon(PointList points)
          Draws a closed polygon defined by the given PointList containing the vertices.
 void SWTGraphics.drawPolyline(PointList points)
           
 void ScaledGraphics.drawPolyline(PointList points)
           
abstract  void Graphics.drawPolyline(PointList points)
          Draws a polyline defined by the given PointList containing the vertices.
 void SWTGraphics.fillPolygon(PointList points)
           
 void ScaledGraphics.fillPolygon(PointList points)
           
abstract  void Graphics.fillPolygon(PointList points)
          Fills a closed polygon defined by the given PointList containing the vertices.
protected  Point ConnectionLocator.getLocation(PointList points)
          Returns a point from the passed PointList, dependent on ConnectionLocator's alignment.
protected abstract  void AutomaticRouter.handleCollision(PointList list, int index)
          Handles collisions between 2 or more Connections.
protected  void FanRouter.handleCollision(PointList points, int index)
          Modifies a given PointList that collides with some other PointList.
 void Polyline.setPoints(PointList points)
          Sets the list of points to be used by this polyline connection.
 void ScalablePolygonShape.setPoints(PointList points)
           
 void Connection.setPoints(PointList list)
          Sets the PointList containing the Points that make up this Connection.
 void AbstractPointListShape.setPoints(PointList points)
          Sets the list of points to be used by this figure.
 void PolygonDecoration.setTemplate(PointList pl)
          Sets the PolygonDecorations point template to the passed PointList.
 void PolylineDecoration.setTemplate(PointList pl)
          Sets the PolylineDecoration's point template.
 

Uses of PointList in org.eclipse.draw2d.geometry
 

Methods in org.eclipse.draw2d.geometry that return PointList
 PointList PointList.getCopy()
          Creates a copy
 

Methods in org.eclipse.draw2d.geometry with parameters of type PointList
 void PointList.addAll(PointList source)
          Appends all of the given points to this PointList.
static boolean Geometry.polygonContainsPoint(PointList points, int x, int y)
          One simple way of finding whether the point is inside or outside a simple polygon is to test how many times a ray starting from the point intersects the edges of the polygon.
static boolean Geometry.polylineContainsPoint(PointList points, int x, int y, int tolerance)
           
 

Uses of PointList in org.eclipse.draw2d.graph
 

Methods in org.eclipse.draw2d.graph that return PointList
 PointList Path.getBendPoints()
          Returns the list of constrained points through which this path must pass or null.
 PointList Path.getPoints()
          Returns the solution to this path.
 PointList Edge.getPoints()
          Returns the path connecting the edge's source and target.
 

Methods in org.eclipse.draw2d.graph with parameters of type PointList
 void Path.setBendPoints(PointList bendPoints)
          Sets the list of bend points to the given list and dirties the path.
 


Draw2d
3.9.100.201405261516

Copyright (c) IBM Corp. and others 2000, 2011. All Rights Reserved.