Definition of sphere.
It is centered in its canonical frame with the given radius.
|
| | Sphere (double radius) |
| | Constructs a sphere with the given radius.
|
| | ~Sphere () final |
| double | radius () const |
| | Sphere (const Sphere &)=default |
| Sphere & | operator= (const Sphere &)=default |
| | Sphere (Sphere &&)=default |
| Sphere & | operator= (Sphere &&)=default |
| virtual | ~Shape () |
| void | Reify (ShapeReifier *reifier, void *user_data=nullptr) const |
| | Causes this description to be reified in the given reifier.
|
| std::unique_ptr< Shape > | Clone () const |
| | Creates a unique copy of this shape.
|
| std::string_view | type_name () const |
| | Returns the (unqualified) type name of this Shape, e.g., "Box".
|
| std::string | to_string () const |
| | Returns a string representation of this shape.
|
| template<typename ReturnType = void, typename Visitor> |
| decltype(auto) | Visit (Visitor &&visitor) const |
| | Calls the given visitor function with *this as the sole argument, but with *this downcast to be the shape's concrete subclass.
|