| 107 | } |
| 108 | |
| 109 | Primitives::Plane Primitives::ConeSegment::basePlane( bool negative ) const |
| 110 | { |
| 111 | assert( std::isfinite( negative ? negativeLength : positiveLength ) ); |
| 112 | return { .center = basePoint( negative ).center, .normal = negative ? -dir : dir }; |
| 113 | } |
| 114 | |
| 115 | Primitives::ConeSegment Primitives::ConeSegment::baseCircle( bool negative ) const |
| 116 | { |
no outgoing calls
no test coverage detected