| 42 | |
| 43 | |
| 44 | void writeObj(Ostream& os,const pointField& points) |
| 45 | { |
| 46 | forAll(points, pointi) |
| 47 | { |
| 48 | const point& pt = points[pointi]; |
| 49 | |
| 50 | os << "v " << pt.x() << ' ' << pt.y() << ' ' << pt.z() << endl; |
| 51 | } |
| 52 | } |
| 53 | |
| 54 | |
| 55 | void checkFaceEdges |
no test coverage detected