ofxVectorGraphics
- ofxVectorGraphics()
- beginEPS(...)
- endEPS()
- enableDraw()
- disableDraw()
- enableCenterRect()
- disableCenterRect()
- fill()
- noFill()
- setLineWidth(...)
- setColor(...)
- changeColor(...)
- rect(...)
- triangle(...)
- circle(...)
- ellipse(...)
- line(...)
- arc(...)
- bezier(...)
- curve(...)
- beginShape()
- polyVertex(...)
- bezierVertex(...)
- curveVertex(...)
- endShape(...)
ofxVectorGraphics methods
beginEPS(...)
void ofxVectorGraphics::beginEPS(string fileName, int x=0, int y=0, int w=ofGetWidth(), int h=ofGetHeight())
triangle(...)
void ofxVectorGraphics::triangle(float x1, float y1, float x2, float y2, float x3, float y3)
arc(...)
void ofxVectorGraphics::arc(float x, float y, float radius, float offsetAngleDegrees, float internalAngleDegrees)
bezier(...)
void ofxVectorGraphics::bezier(float x1, float y1, float x2, float y2, float x3, float y3, float x4, float y4)
curve(...)
void ofxVectorGraphics::curve(float x1, float y1, float x2, float y2, float x3, float y3, float x4, float y4)
bezierVertex(...)
void ofxVectorGraphics::bezierVertex(float x1, float y1, float x2, float y2, float x3, float y3)
