| 452 | } |
| 453 | |
| 454 | extern "C" OPENPGL_DLLEXPORT void pglPathSegmentSetMaxDistance(PGLPathSegmentStorage pathSegmentStorage, float maxDistance) |
| 455 | { |
| 456 | auto *gPathSegmentStorage = (openpgl::PathSegmentDataStorage *)pathSegmentStorage; |
| 457 | gPathSegmentStorage->setMaxDistance(maxDistance); |
| 458 | } |
| 459 | |
| 460 | extern "C" OPENPGL_DLLEXPORT float pglPathSegmentGetMaxDistance(PGLPathSegmentStorage pathSegmentStorage) |
| 461 | { |
no test coverage detected