| 7 | |
| 8 | |
| 9 | v8::Local<v8::Value> BoundingBox::NewInstance(const Bnd_Box& box) |
| 10 | { |
| 11 | |
| 12 | v8::Local<v8::Object> instance = makeInstance(_template); |
| 13 | |
| 14 | BoundingBox* pThis = ObjectWrap::Unwrap<BoundingBox>(instance); |
| 15 | |
| 16 | pThis->m_box = box; |
| 17 | |
| 18 | return instance; |
| 19 | } |
| 20 | |
| 21 | v8::Local<v8::Value> BoundingBox::NewInstance(const gp_Pnt& nearPt,const gp_Pnt& farPt) |
| 22 | { |
nothing calls this directly
no test coverage detected