| 414 | |
| 415 | |
| 416 | NAN_PROPERTY_GETTER(Solid::_mesh) |
| 417 | { |
| 418 | Solid* pThis = UNWRAP(Solid); |
| 419 | if (pThis->m_cacheMesh.IsEmpty()) { |
| 420 | pThis->m_cacheMesh.Reset(pThis->createMesh(1,0.5,true)); |
| 421 | } |
| 422 | info.GetReturnValue().Set(Nan::New(pThis->m_cacheMesh)); |
| 423 | } |
| 424 | |
| 425 | |
| 426 | //void Solid::Mesh() |
nothing calls this directly
no test coverage detected