C# 클래스 MeshExplorer.IO.EpsImage

Writes a mesh to an EPS file.
파일 보기 프로젝트 열기: RegrowthStudios/VoxelRTS 1 사용 예제들

공개 메소드들

메소드 설명
Export ( Mesh mesh, string filename, int width ) : void

Export the mesh to EPS format.

비공개 메소드들

메소드 설명
DrawClip ( StreamWriter eps ) : void
DrawPoints ( StreamWriter eps, Mesh mesh, bool label ) : void
DrawSegments ( StreamWriter eps, Mesh mesh ) : void
DrawTriangles ( StreamWriter eps, Mesh mesh, bool label ) : void
UpdateMetrics ( TriangleNet.Geometry.BoundingBox bounds ) : void
WriteHeader ( string filename, StreamWriter eps ) : void
WriteTrailer ( StreamWriter eps ) : void

메소드 상세

Export() 공개 메소드

Export the mesh to EPS format.
public Export ( Mesh mesh, string filename, int width ) : void
mesh TriangleNet.Mesh The current mesh.
filename string The EPS filename.
width int The desired width of the image (currently ignored).
리턴 void