C# 클래스 MeshExplorer.IO.SvgImage

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

공개 메소드들

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

Export the mesh to SVG format.

비공개 메소드들

메소드 설명
DrawPoints ( StreamWriter svg, Mesh mesh, bool label ) : void
DrawSegments ( StreamWriter svg, Mesh mesh ) : void
DrawTriangles ( StreamWriter svg, Mesh mesh, bool label ) : void

메소드 상세

Export() 공개 메소드

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