Skip to content

Commit

Permalink
fix(Doc): manually fix class inheritance
Browse files Browse the repository at this point in the history
  • Loading branch information
panquez committed Apr 22, 2020
1 parent 6e7977b commit 6fcd796
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
4 changes: 4 additions & 0 deletions include/geode/model/representation/builder/brep_builder.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ namespace geode
{
/*!
* Class managing modification of a BRep
* @extends CornersBuilder
* @extends LinesBuilder
* @extends SurfacesBuilder
* @extends BlocksBuilder
*/
class opengeode_model_api BRepBuilder : public TopologyBuilder,
public AddComponentsBuilders< 3,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ namespace geode
{
/*!
* Class managing modification of a Section
* @extends CornersBuilder LinesBuilder
*/
class opengeode_model_api SectionBuilder : public TopologyBuilder,
public AddComponentsBuilders< 2,
Expand Down
2 changes: 0 additions & 2 deletions src/geode/mesh/core/polygonal_surface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -426,8 +426,6 @@ namespace geode
{
if( !is_edge_on_border( polygon_edge ) )
{
const auto v0 = polygon_edge_vertex( polygon_edge, 0 );
const auto v1 = polygon_edge_vertex( polygon_edge, 1 );
const auto polygon_adj = polygon_adjacent( polygon_edge );
const auto edge_id = this->polygon_edge( polygon_edge );
for( const auto e : Range{ nb_polygon_edges( polygon_adj ) } )
Expand Down

0 comments on commit 6fcd796

Please sign in to comment.