|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
java.lang.Objectgeomerative.RGeomElem
geomerative.RPath
public class RPath
RPath is a reduced interface for creating, holding and drawing contours. Paths are ordered lists of commands (RCommand) which define the outlines of Shapes. Paths can be self-intersecting.
| Field Summary | |
|---|---|
RCommand[] |
commands
Array of RCommand objects holding the commands of the path. |
RPoint |
lastPoint
Last point from where to add the next command. |
int |
type
|
| Fields inherited from class geomerative.RGeomElem |
|---|
COMMAND, CONTOUR, GROUP, MESH, name, POLYGON, SHAPE, SUBSHAPE, TRISTRIP, UNKNOWN |
| Constructor Summary | |
|---|---|
RPath()
Create a new empty path. |
|
RPath(float x,
float y)
Create a new path, given the coordinates of the first point. |
|
RPath(RCommand c)
|
|
RPath(RPath s)
Copy a path. |
|
RPath(RPoint p)
Create a new path, given the first point. |
|
RPath(RPoint[] points)
Create a new path, given an array of points. |
|
| Method Summary | |
|---|---|
void |
addBezierTo(float cp1x,
float cp1y,
float cp2x,
float cp2y,
float endx,
float endy)
Add a new cubic bezier to the path. |
void |
addBezierTo(RPoint cp1,
RPoint cp2,
RPoint end)
Add a new cubic bezier to the path. |
void |
addClose()
|
void |
addCommand(RCommand p)
Use this method to add new commands to the contour. |
void |
addLineTo(float endx,
float endy)
Add a new line to the path. |
void |
addLineTo(RPoint end)
Add a new line to the path. |
void |
addQuadTo(float cp1x,
float cp1y,
float endx,
float endy)
Add a new quadratic bezier to the path. |
void |
addQuadTo(RPoint cp1,
RPoint end)
Add a new quadratic bezier to the path. |
RClosest |
closestPoints(RCommand other)
Use this to find the closest or intersection points between this path and a command. |
RClosest |
closestPoints(RPath other)
Use this to return the intersection points between two paths. |
boolean |
contains(RPoint p)
Use this to return a specific tangent on the curve. |
int |
countCommands()
Use this method to count the number of commands in the contour. |
void |
draw(processing.core.PApplet g)
|
void |
draw(processing.core.PGraphics g)
Use this method to draw the path. |
RPoint[] |
getHandles()
Use this to return the start, control and end points of the path. |
RPoint[][] |
getHandlesInPaths()
Use this to return the handles of each path of the path. |
RPoint |
getPoint(float t)
Return a specific point on the curve. |
RPoint[] |
getPoints()
Use this to return the points on the curve. |
RPoint[][] |
getPointsInPaths()
Use this to return the points of each path of the path. |
RPoint |
getTangent(float t)
Use this to return a specific tangent on the curve. |
RPoint[] |
getTangents()
Use this to return the tangents on the curve. |
RPoint[][] |
getTangentsInPaths()
Use this to return the tangents of each path of the path. |
int |
getType()
Use this method to get the type of element this is. |
void |
insertHandle(float t)
Use this to insert a split point into the path. |
void |
insertHandleInPaths(float t)
Use this to insert a split point into each command of the path. |
RPoint[] |
intersectionPoints(RCommand other)
Use this to return the intersection points between this path and a command. |
RPoint[] |
intersectionPoints(RPath other)
Use this to return the intersection points between two paths. |
void |
polygonize()
|
void |
print()
|
RPath[] |
split(float t)
Use this to split a path into two separate new paths. |
RMesh |
toMesh()
|
RPolygon |
toPolygon()
|
RShape |
toShape()
|
| Methods inherited from class geomerative.RGeomElem |
|---|
centerIn, centerIn, centerIn, contains, contains, containsBounds, containsHandles, draw, getArea, getBottomLeft, getBottomRight, getBounds, getBoundsPoints, getCenter, getCenteringTransf, getCenteringTransf, getCenteringTransf, getCentroid, getCurveLength, getCurveLengths, getHeight, getOrigHeight, getOrigWidth, getStyle, getTopLeft, getTopRight, getWidth, getX, getY, intersects, intersects, intersectsBounds, intersectsHandles, isIn, isIn, rotate, rotate, rotate, scale, scale, scale, scale, scale, scale, setAlpha, setAlpha, setAlpha, setFill, setFill, setFill, setFillAlpha, setFillAlpha, setName, setStroke, setStroke, setStroke, setStrokeAlpha, setStrokeAlpha, setStrokeCap, setStrokeJoin, setStrokeWeight, setStrokeWeight, setStyle, shear, skewX, skewY, transform, transform, transform, translate, translate |
| Methods inherited from class java.lang.Object |
|---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public int type
public RCommand[] commands
public RPoint lastPoint
| Constructor Detail |
|---|
public RPath()
public RPath(RPoint[] points)
points - the points of the new path
public RPath(float x,
float y)
x - x coordinate of the first point of the new pathy - y coordinate of the first point of the new pathpublic RPath(RPoint p)
p - first point of the new pathpublic RPath(RPath s)
s - path to be copiedpublic RPath(RCommand c)
| Method Detail |
|---|
public int countCommands()
public RPoint[] getHandles()
getHandles in class RGeomElempublic RPoint[] getPoints()
getPoints in class RGeomElempublic RPoint[][] getPointsInPaths()
getPointsInPaths in class RGeomElempublic RPoint[][] getHandlesInPaths()
getHandlesInPaths in class RGeomElempublic RPoint[][] getTangentsInPaths()
getTangentsInPaths in class RGeomElempublic RPoint[] getTangents()
getTangents in class RGeomElempublic RPoint[] intersectionPoints(RCommand other)
public RPoint[] intersectionPoints(RPath other)
public RClosest closestPoints(RCommand other)
public RClosest closestPoints(RPath other)
public RPoint getPoint(float t)
getPoint in class RGeomElemt - the parameter of advancement on the curve. t must have values between 0 and 1.
public RPoint getTangent(float t)
getTangent in class RGeomElemt - float, the parameter of advancement on the curve. t must have values between 0 and 1.
public boolean contains(RPoint p)
contains in class RGeomElemp - the point for which to test containement..
public void insertHandle(float t)
t - float, the parameter of advancement on the curve. t must have values between 0 and 1.public void insertHandleInPaths(float t)
t - float, the parameter of advancement on the curve. t must have values between 0 and 1.public RPath[] split(float t)
t - float, the parameter of advancement on the curve. t must have values between 0 and 1.
public void polygonize()
public void draw(processing.core.PGraphics g)
draw in class RGeomElemg - PGraphics, the graphics object on which to draw the pathpublic void draw(processing.core.PApplet g)
draw in class RGeomElempublic void addCommand(RCommand p)
public void addBezierTo(RPoint cp1,
RPoint cp2,
RPoint end)
cp1 - first control pointcp2 - second control pointend - end point
public void addBezierTo(float cp1x,
float cp1y,
float cp2x,
float cp2y,
float endx,
float endy)
cp1x - the x coordinate of the first control pointcp1y - the y coordinate of the first control pointcp2x - the x coordinate of the second control pointcp2y - the y coordinate of the second control pointendx - the x coordinate of the end pointendy - the y coordinate of the end point
public void addQuadTo(RPoint cp1,
RPoint end)
cp1 - first control pointend - end point
public void addQuadTo(float cp1x,
float cp1y,
float endx,
float endy)
cp1x - the x coordinate of the first control pointcp1y - the y coordinate of the first control pointendx - the x coordinate of the end pointendy - the y coordinate of the end pointpublic void addLineTo(RPoint end)
end - end point
public void addLineTo(float endx,
float endy)
endx - the x coordinate of the end pointendy - the y coordinate of the end pointpublic void addClose()
public RPolygon toPolygon()
toPolygon in class RGeomElempublic RShape toShape()
toShape in class RGeomElempublic RMesh toMesh()
toMesh in class RGeomElempublic int getType()
getType in class RGeomElempublic void print()
print in class RGeomElem
|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||