Uses of Class
crystalspace.jbind.impl.csgeom.vector2.csVector2Array

Packages that use csVector2Array
crystalspace.jbind.impl.csgeom.box   
crystalspace.jbind.impl.csgeom.clip2d   
crystalspace.jbind.impl.csgeom.poly2d   
crystalspace.jbind.interfaces.igeom.clip2d   
 

Uses of csVector2Array in crystalspace.jbind.impl.csgeom.box
 

Methods in crystalspace.jbind.impl.csgeom.box with parameters of type csVector2Array
 boolean csBox2.intersect(csVector2Array poly)
          Test if a polygon if visible in the box.
 boolean csBox2.intersect(csVector2 minbox, csVector2 maxbox, csVector2Array poly)
          Test if a polygon if visible in the box.
 boolean csBox2.intersect(float minx, float miny, float maxx, float maxy, csVector2Array poly)
          Test if a polygon if visible in the box.
 

Uses of csVector2Array in crystalspace.jbind.impl.csgeom.clip2d
 

Methods in crystalspace.jbind.impl.csgeom.clip2d that return csVector2Array
 csVector2Array csClipper2D.getClipPoly()
           
 

Methods in crystalspace.jbind.impl.csgeom.clip2d with parameters of type csVector2Array
 short csClipper2D.clip(csVector2Array InPolygon, csVector2Array OutPolygon, csVertexStatus OutStatus)
           
 short csClipper2D.clip(csVector2Array InPolygon, csVector2Array OutPolygon, csBox2 BoundingBox)
           
 short csClipper2D.clip(csVector2Array InPolygon, csVector2Array OutPolygon)
           
 short csClipper2D.clipInPlace(csVector2Array InPolygon, csBox2 BoundingBox)
           
 

Uses of csVector2Array in crystalspace.jbind.impl.csgeom.poly2d
 

Methods in crystalspace.jbind.impl.csgeom.poly2d that return csVector2Array
 csVector2Array csPoly2D.getVertices()
          Get the array with all vertices.
 

Methods in crystalspace.jbind.impl.csgeom.poly2d with parameters of type csVector2Array
static boolean csPoly2D.in(csVector2Array poly, csVector2 v)
          Test if a vector is inside the given polygon.
 void csPoly2D.setVertices(csVector2Array v)
          Set all polygon vertices at once.
 

Uses of csVector2Array in crystalspace.jbind.interfaces.igeom.clip2d
 

Methods in crystalspace.jbind.interfaces.igeom.clip2d that return csVector2Array
 csVector2Array iClipper2D.getClipPoly()
          Return a pointer to the array of csVector2's.
 

Methods in crystalspace.jbind.interfaces.igeom.clip2d with parameters of type csVector2Array
 short iClipper2D.clip(csVector2Array InPolygon, csVector2Array OutPolygon, csVertexStatus OutStatus)
          Clips a set of 2D points and provides additional information on each output vertex.
 short iClipper2D.clip(csVector2Array InPolygon, csVector2Array OutPolygon, csBox2 BoundingBox)
          Clip a set of 2D points.
 short iClipper2D.clip(csVector2Array InPolygon, csVector2Array OutPolygon)
          Clip a set of 2D points and return in 'OutPolygon' which is expected to contain space at least for MAX_OUTPUT_VERTICES elements.
 short iClipper2D.clipInPlace(csVector2Array InPolygon, csBox2 BoundingBox)
          Wrapper function: clip a polygon in-place.