| 92 | } |
| 93 | |
| 94 | bool ClippingProperty::FromJSON(const nlohmann::json& j) |
| 95 | { |
| 96 | this->SetClippingEnabled(j["Enabled"].get<bool>()); |
| 97 | this->SetOrigin(j["Origin"].get<Point3D>()); |
| 98 | this->SetNormal(j["Normal"].get<Vector3D>()); |
| 99 | |
| 100 | return true; |
| 101 | } |
| 102 | |
| 103 | } // namespace |
nothing calls this directly
no test coverage detected