| 308 | } |
| 309 | |
| 310 | std::array<double, 16> GetCoordinationMatrix(uint32_t modelID) |
| 311 | { |
| 312 | return manager.IsModelOpen(modelID) ? manager.GetGeometryProcessor(modelID)->GetFlatCoordinationMatrix() : std::array<double, 16>(); |
| 313 | } |
| 314 | /* |
| 315 | * @brief Returns the 4x4 world transformation matrix for a given placement Express ID, |
| 316 | * flattened into a 1D array of 16 doubles in **column-major order**. |
nothing calls this directly
no test coverage detected