VTK/Tutorials/TriangleGeometryOnly: Difference between revisions
From KitwarePublic
Jump to navigationJump to search
Daviddoria (talk | contribs) (New page: void TestWritePointSquare(const string &OutputFile, const char FileType) { //setup points vector<Point> Points; Points.push_back(Point(-1, 1, 0)); Points.push_back(Point(1, 1, 0)); ...) |
Daviddoria (talk | contribs) No edit summary |
||
Line 1: | Line 1: | ||
<source lang="cpp"> | |||
void TestWritePointSquare(const string &OutputFile, const char FileType) | void TestWritePointSquare(const string &OutputFile, const char FileType) | ||
{ | { | ||
Line 20: | Line 21: | ||
} | } | ||
</source> |
Revision as of 15:00, 8 April 2009
<source lang="cpp"> void TestWritePointSquare(const string &OutputFile, const char FileType) { //setup points vector<Point> Points; Points.push_back(Point(-1, 1, 0)); Points.push_back(Point(1, 1, 0)); Points.push_back(Point(1, -1, 0)); Points.push_back(Point(-1, -1, 0));
//setup model ModelClass Model; Model.Points = Points;
//write model
if(FileType == 'u') VtuWrite(Model, OutputFile); else if(FileType == 'p') VtpWrite(Model, OutputFile);
} </source>