Hide menu
Loading...
Searching...
No Matches

Describes a machining hole of a specified type. Hole is a cylindrical feature that can be made by cutting from the workpiece by a rotating cutting tool. More...

Inheritance diagram for cadex::Machining_Hole:
cadex::MTKBase_Hole cadex::MTKBase_ShapeFeature cadex::MTKBase_Feature

Public Member Functions

 Machining_Hole ()
 Constructor.
 
 Machining_Hole (double theRadius, double theDepth, Machining_HoleType theType)
 Constructor.
 
 Machining_Hole (double theRadius, double theDepth, const Geom::Axis3d &theAxis, Machining_HoleType theType)
 Constructor.
 
Machining_HoleType Type () const
 
void SetType (Machining_HoleType theType)
 
- Public Member Functions inherited from cadex::MTKBase_Hole
 MTKBase_Hole ()
 Constructor.
 
 MTKBase_Hole (double theRadius, double theDepth)
 Constructor.
 
 MTKBase_Hole (double theRadius, double theDepth, const Geom::Axis3d &theAxis)
 Constructor.
 
double Radius () const
 
void SetRadius (double theRadius)
 
double Depth () const
 
void SetDepth (double theDepth)
 
bool HasAxis () const
 
const Geom::Axis3dAxis () const
 
void SetAxis (const Geom::Axis3d &theAxis)
 
- Public Member Functions inherited from cadex::MTKBase_ShapeFeature
 MTKBase_ShapeFeature ()
 Constructor.
 
 MTKBase_ShapeFeature (const ModelData::Shape &theShape)
 Constructor.
 
const ModelData::ShapeShape () const
 
void SetShape (const ModelData::Shape &theShape)
 
- Public Member Functions inherited from cadex::MTKBase_Feature
 MTKBase_Feature ()
 Constructor.
 
 ~MTKBase_Feature ()
 Destructor.
 
void Nullify ()
 
bool IsNull () const
 
 operator bool () const
 Casts the object to the bool type.
 
template<typename T >
bool IsOfType () const
 
ImplType * Impl () const
 
template<typename T >
T * Impl () const
 Reserved for internal use.
 
bool operator== (const MTKBase_Feature &theObject) const
 
bool operator!= (const MTKBase_Feature &theObject) const
 

Static Public Member Functions

static bool CompareType (const MTKBase_Feature &theFeature)
 Returnstrue if theFeature is a machining hole.
 
- Static Public Member Functions inherited from cadex::MTKBase_Hole
static bool CompareType (const MTKBase_Feature &theFeature)
 Returns true if theFeature is a hole.
 
- Static Public Member Functions inherited from cadex::MTKBase_ShapeFeature
static bool CompareType (const MTKBase_Feature &theFeature)
 Returnstrue if theFeature is a shape feature.
 

Additional Inherited Members

- Public Types inherited from cadex::MTKBase_Hole
typedef cadex::internal::MTKBaseImpl_Hole ImplType
 
typedef std::shared_ptr< ImplType > ImplPtrType
 
- Public Types inherited from cadex::MTKBase_ShapeFeature
typedef cadex::internal::MTKBaseImpl_ShapeFeature ImplType
 
typedef std::shared_ptr< ImplType > ImplPtrType
 
- Public Types inherited from cadex::MTKBase_Feature
typedef cadex::internal::MTKBaseImpl_Feature ImplType
 
typedef std::shared_ptr< ImplType > ImplPtrType
 
- Protected Member Functions inherited from cadex::MTKBase_Hole
 MTKBase_Hole (ImplPtrType theImpl)
 Reserved for internal use.
 
- Protected Member Functions inherited from cadex::MTKBase_ShapeFeature
 MTKBase_ShapeFeature (ImplPtrType theImpl)
 Reserved for internal use.
 
- Protected Member Functions inherited from cadex::MTKBase_Feature
 MTKBase_Feature (ImplPtrType theImpl)
 Reserved for internal use.
 
- Protected Attributes inherited from cadex::MTKBase_Feature
ImplPtrType myImpl
 

Detailed Description

Describes a machining hole of a specified type. Hole is a cylindrical feature that can be made by cutting from the workpiece by a rotating cutting tool.

The hole can be either a through hole or a blind hole. A through hole is a complete hole that you can see on both sides of the object, while a blind hole is only drilled, milled or reamed to get a specific depth. The blind hole can have a flat bottom or pointed end due to the ending point of the tool. Also, holes can be made at the edge of the material - partial holes, in this case only part of the hole is in the material.

Shape() method returns ModelData::Shell for this class.

Hole types

MTK supports hole types (defined by the Machining_HoleType enumeration) defined in the following table:

Through hole A hole that goes through the entire workpiece.
Flat Bottom hole A hole machined to have a flat reflecting surface at the hole bottom
Blind hole A hole does not pass through the entire workpiece
""
Partial hole An open hole drilled on the part side.

The hole type is returned by Type().

Examples
MTKConverter/Program.cs, MTKConverter/main.cxx, machining/feature_recognizer/Program.cs, and machining/feature_recognizer/main.cxx.

Constructor & Destructor Documentation

◆ Machining_Hole() [1/2]

cadex::Machining_Hole::Machining_Hole ( double theRadius,
double theDepth,
Machining_HoleType theType )

Constructor.

Creates a machining hole from radius, depth and machining hole type.

◆ Machining_Hole() [2/2]

cadex::Machining_Hole::Machining_Hole ( double theRadius,
double theDepth,
const Geom::Axis3d & theAxis,
Machining_HoleType theType )

Constructor.

Creates a machining hole from radius, depth, axis and machining hole type.

Member Function Documentation

◆ SetType()

void cadex::Machining_Hole::SetType ( Machining_HoleType theType)

Sets type of the machining hole.

See also
Type()

◆ Type()

Machining_HoleType cadex::Machining_Hole::Type ( ) const

Returns type of machining hole.

See also
SetType()
Examples
MTKConverter/Program.cs, and MTKConverter/main.cxx.