()
| 68 | test2(); |
| 69 | |
| 70 | function test1() { |
| 71 | var solid; |
| 72 | var shapeIt; |
| 73 | |
| 74 | solid = occ.makeBox([10,20,30],[20,40,60]); |
| 75 | |
| 76 | shapeIt = new occ.ShapeIterator(solid,"FACE"); |
| 77 | shapeIt.more.should.be.true; |
| 78 | assert(shapeIt.current === undefined); |
| 79 | |
| 80 | } |
| 81 | test1(); |
| 82 | |
| 83 |