Class for create a bevel by the boolean operations with meshes. Подробнее...
Открытые члены | |
Bevel (float radius) | |
Constructor with radius. Подробнее... | |
Class for create a bevel by the boolean operations with meshes.
Builder builder;
Mesh a = builder.cuboid()
.side( Vec3( 100, 80, 60 ) )
.position( Vec3( 0 ) )
.build();
Mesh b = builder.sphere()
.radius( 50 )
.position( Vec3( 20, 30, 40 ) )
.build();
Bevel bevel;
bevel.radius( 4.7 );
a.add( b, bevel );
SculptRoom sculpt;
sculpt.clear().toSurface();
sculpt += a;
|
inline |
Constructor with radius.
Bevel bevel( 5 );