This documentation is automatically generated from the openFrameworks source code using doxygen and refers to the most recent release, version 0.12.0.
ofTessellator.h
Go to the documentation of this file.
38 void tessellateToMesh( const std::vector<ofPolyline>& src, ofPolyWindingMode polyWindingMode, ofMesh & dstmesh, bool bIs2D=false );
42 void tessellateToMesh( const ofPolyline& src, ofPolyWindingMode polyWindingMode, ofMesh& dstmesh, bool bIs2D=false );
46 void tessellateToPolylines( const std::vector<ofPolyline>& src, ofPolyWindingMode polyWindingMode, std::vector<ofPolyline>& dstpoly, bool bIs2D=false );
49 void tessellateToPolylines( const ofPolyline & src, ofPolyWindingMode polyWindingMode, std::vector<ofPolyline>& dstpoly, bool bIs2D=false );
54 void performTessellation(ofPolyWindingMode polyWindingMode, std::vector<ofPolyline>& dstpoly, bool bIs2D );
ofTessellator exists for one purpose: to turn ofPolylines into ofMeshes so that they can be more effi...
Definition ofTessellator.h:25
void tessellateToPolylines(const std::vector< ofPolyline > &src, ofPolyWindingMode polyWindingMode, std::vector< ofPolyline > &dstpoly, bool bIs2D=false)
Tessellates a vector of ofPolyline instances into vector of ofPolyline instances using the winding mo...
void tessellateToPolylines(const ofPolyline &src, ofPolyWindingMode polyWindingMode, std::vector< ofPolyline > &dstpoly, bool bIs2D=false)
Tessellate multiple polylines into a single polyline.
void tessellateToMesh(const std::vector< ofPolyline > &src, ofPolyWindingMode polyWindingMode, ofMesh &dstmesh, bool bIs2D=false)
Tessellates a vector of ofPolyline instances into a single ofMesh instance using the winding mode set...
ofTessellator & operator=(const ofTessellator &mom)
Operator overloading to copy properties from one tessellator to another.
Definition ofTessellator.cpp:77
ofPolyWindingMode
represents the available polygon winding modes.
Definition ofGraphicsConstants.h:97