| 120 | } |
| 121 | |
| 122 | v8::Local<v8::Value> Solid::NewInstance() |
| 123 | { |
| 124 | v8::Local<v8::Object> instance = makeInstance(Solid::_template); |
| 125 | Solid* pThis = Nan::ObjectWrap::Unwrap<Solid>(instance); |
| 126 | return instance; |
| 127 | } |
| 128 | |
| 129 | v8::Local<v8::Value> Solid::NewInstance(TopoDS_Shape shape) |
| 130 | { |
nothing calls this directly
no test coverage detected