3DCoatScripting  4.8.31β
You can manage 3DСoat features with help of scripting
coat::scripto::Bevel Class Reference

Class for create a bevel by the boolean operations with meshes. More...

Public Member Functions

 Bevel (float radius)
 Constructor with radius. More...
 

Detailed Description

Class for create a bevel by the boolean operations with meshes.

bevel.png
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;
See Also
Mesh
Since
4.7.15

Constructor & Destructor Documentation

coat::scripto::Bevel::Bevel ( float  radius)
inline

Constructor with radius.

Bevel bevel( 5 );