KernelCAD Documentation

DInsight Home
Skip Navigation Links.
Start page
Quick Start
Installation
Overview of the software
What is new
Collapse KernelCAD ModelsKernelCAD Models
Collapse KernelCAD ComponentsKernelCAD Components
KernelCAD Control
KernelCAD .NET Control
Methods and Properties
Menu
Model Explorer
Birds Eye View
Programming
Direct User Access
Direct Operations
Interface Queries
Printing Support
Data Types
Modes of KernelCAD Control
DIObjectGenerator class
Properties
FlatObjectArray Poperty
Context
64 bit development
Dual Mode
Initialisation Context
Overlay Editor
Memory Management
Input validation
Collapse Advanced functionalityAdvanced functionality
Collapse InterfacesInterfaces
Alphabetical list
I3DGrid
I3DBugger
I3Dpt
IAxiBase
IAxis
IBoolSection
IBoolSectionEx
IBoundary
IColor
IConstraint
IData
IDiffSurface_KC
IDIFont
IDraw
IDrawUtil
IDraw2
IElem
IElement
IKCLine
ILightSource
ILocation
ILocationEx
IMaterial
IMetrics
IMetrics2
IModel
IModel2
IModelEx
IPatch
IKCPathCollisionDetector
IProfiles
IPropertyArray
IPropertyArray2
IStdShape
IStrip
ISurface
IText
ITexture
ITransform
IUnknown
Collapse Open Cascade TechnologyOpen Cascade Technology
Collapse DataData
Collapse MovementMovement
Collapse FramesFrames
Collapse Oriented ObjectsOriented Objects
Collapse SectionsSections
Collapse GeneralGeneral
Collapse Topological InterfacesTopological Interfaces
Collapse Viewing InterfacesViewing Interfaces
Collapse Lines And CurvesLines And Curves
Collapse Symmetry InterfacesSymmetry Interfaces
Collapse Clipping plane interfacesClipping plane interfaces
Collapse AlgorithmsAlgorithms
Collapse 2D Geometry2D Geometry
Collapse Programming Samples and TutorialsProgramming Samples and Tutorials
Collapse OverviewOverview
Collapse DeploymentDeployment
Collapse .NET Samples.NET Samples
Collapse C++ SamplesC++ Samples
Collapse Visual Basic SamplesVisual Basic Samples
Collapse Delphi SamplesDelphi Samples
Collapse 3D Debugger3D Debugger
Collapse DeploymentDeployment
Licensing
Model Viewer
Open C++ Source
Technical Support
Skip Navigation LinksHome Page > KernelCAD Models > Sections > Surface and Solid Sections > BRep BSpline objects > Bspline objects
BSpline BRep Objects

BSpline BRep Objects

BSpline BRep 3D Object is the section type created during import of solids via STEP or IGES formats. It is the most flexible parametric representation of objects with surfaces.

BSpline BRep objects can also be created programmatically using IStdShape Interface obtained via IKO_Model (details) or using Model Explorer. BSpline BRep objects are also created during various operations like through (generalised extrusion) operation.

IKO_BRep_Builder interface allows building BSpline BRep objects from the ground up by defining geometry of its vertices, edges and faces. See ShapeBuilder class implementation in Shape Explorer sample for an example.

Geometry of a BSpline BRep 3D Object (section) is represented by a shape. Shape has only purely geometric attributes. Most of shapes have sub shapes.

A shape representing BSpline BRep object normally is a shape organised hierarchically: The top shape is one or several shells. Shells are sets of joned together faces which often constitute a closed surface.

A shell consists of faces (Details). A face is a smooth (not necessarily flat) piece of surface with several edges. For example a rectangle in 3D is normally represented by a flat face with four edges. Faces are sub shapes of shells.

An edge can be either straight or curved, but always smooth curve with two ends. Ends of an edge may coincide, in which case the curve is closed.

A linked sequence of edges is called a wire. Wires are sub shapes of faces. Edges are sub shapes of faces and wires.

A vertex, which represents a point with some other non-geometrical additional information, is the lowest-level sub shape. Ends of edges are vertices. Corners of a patch are also vertices.

Solid is a shape represented by a single closed shell

Composite solid consist of one or more solids in which some faces can be shared by adjacent solids (solids with dividing walls inside)

A Compouind shape consists of several grouped, but not necesserily joined, shapes of different types like solids and edges

 

Solid Structure

Structure of a shape can be discovered at runtime using IKO_TopExp_Explorer

See also: Shape Explorer Sample