opynsim
Unofficial C++ Documentation
Loading...
Searching...
No Matches
sphere.h
Go to the documentation of this file.
1#pragma once
2
4
5#include <iosfwd>
6
7namespace osc
8{
9 struct Sphere final {
11 float radius{1.0f};
12 };
13
14 std::ostream& operator<<(std::ostream&, const Sphere&);
15}
Definition custom_decoration_generator.h:5
std::ostream & operator<<(std::ostream &, const Object &)
constexpr U to(T &&value)
Definition conversion.h:56
Definition sphere.h:9
Vector3 origin
Definition sphere.h:10
float radius
Definition sphere.h:11