Project Geode-Explicit
class BRepExplicitModeler
Functions
BRepExplicitModeler
public void BRepExplicitModeler(const BRepExplicitModeler & )
public void BRepExplicitModeler(const BRepExplicitModeler & )
operator=
public BRepExplicitModeler & operator=(const BRepExplicitModeler & )
public BRepExplicitModeler & operator=(const BRepExplicitModeler & )
BRepExplicitModeler
public void BRepExplicitModeler()
public void BRepExplicitModeler()
BRepExplicitModeler
public void BRepExplicitModeler(const BRep & brep)
public void BRepExplicitModeler(const BRep & brep)
~BRepExplicitModeler
public void ~BRepExplicitModeler()
public void ~BRepExplicitModeler()
add_point_set
public void add_point_set(const PointSet3D & mesh)
public void add_point_set(const PointSet3D & mesh)
add_curve
public void add_curve(const EdgedCurve3D & mesh)
public void add_curve(const EdgedCurve3D & mesh)
add_triangulated_surface
public void add_triangulated_surface(const TriangulatedSurface3D & mesh)
public void add_triangulated_surface(const TriangulatedSurface3D & mesh)
add_corner
public void add_corner(const Corner3D & corner)
public void add_corner(const Corner3D & corner)
add_line
public void add_line(const Line3D & line)
public void add_line(const Line3D & line)
add_surface
public void add_surface(const Surface3D & surface)
public void add_surface(const Surface3D & surface)
add_brep
public void add_brep(const BRep & brep)
public void add_brep(const BRep & brep)
process
public void process()
public void process()
Compute all intersections between input Meshes
get_surface
public unique_ptr get_surface(const uuid & surface_id)
public unique_ptr get_surface(const uuid & surface_id)
Creates a clone of the (modified) triangulated surface with given surface_id. Returns nullptr if the surface_id does not exist.
surface_id [in] the id of the surface to retrieve
return the triangulated surface (or nullptr if not found)
get_curve
public unique_ptr get_curve(const uuid & curve_id)
public unique_ptr get_curve(const uuid & curve_id)
Creates a clone of the (modified) curve with given curve_id. Returns nullptr if the curve_id does not exist.
curve_id [in] the id of the curve to retrieve
return the curve (or nullptr if not found)
get_point_set
public unique_ptr get_point_set(const uuid & point_set_id)
public unique_ptr get_point_set(const uuid & point_set_id)
Creates a clone of the (modified) point set with given point_set_id. Returns nullptr if the point_set_id does not exist.
point_set_id [in] the id of the point set to retrieve
return the point set (or nullptr if not found)
build
public tuple build()
public tuple build()
Returns the merged BRep (no mesh in Blocks) including all the added curves and surfaces and gives the "input to output" and "output to input" mappings between Surfaces and Lines
details calls process() then creates the model