| 148 | } |
| 149 | |
| 150 | v8::Local<v8::Object> Face::Clone() const |
| 151 | { |
| 152 | Face* obj = new Face(); |
| 153 | v8::Local<v8::Object> instance = makeInstance(_template); |
| 154 | obj->Wrap(instance); |
| 155 | obj->setShape(this->shape()); |
| 156 | return instance; |
| 157 | } |
| 158 | |
| 159 | v8::Local<v8::Object> Face::NewInstance(const TopoDS_Face& face) |
| 160 | { |
nothing calls this directly
no test coverage detected