opynsim
Unofficial C++ Documentation
Loading...
Searching...
No Matches
wireframe_geometry.h
Go to the documentation of this file.
1#pragma once
2
5
6namespace osc
7{
9 public:
10 static constexpr CStringView name() { return "Wireframe"; }
11
12 // default-constructs a `WireframeGeometry` of a default-constructed `BoxGeometry`
14
15 explicit WireframeGeometry(const Mesh&);
16
17 const Mesh& mesh() const { return mesh_; }
18 operator const Mesh& () const { return mesh_; }
19 private:
20 Mesh mesh_;
21 };
22}
Definition c_string_view.h:12
Definition mesh.h:33
Definition wireframe_geometry.h:8
static constexpr CStringView name()
Definition wireframe_geometry.h:10
WireframeGeometry(const Mesh &)
const Mesh & mesh() const
Definition wireframe_geometry.h:17
Definition custom_decoration_generator.h:5
constexpr U to(T &&value)
Definition conversion.h:56