# Geom

> Python API types

### AABB

AABB stands for Axis Aligned Bounding Box. It is a bounding volume which is aligned with the axes of the coordinates system.
Fields

| Type | Name   | Default | Description |
| ---- | ------ | ------- | ----------- |
| low  | Point3 |         |             |
| high | Point3 |         |             |

Functions accepting this type or a list of this type as a parameter:

* [algo.sawWithAABB](./algo_functions.md#sawwithaabb)
* [algo.sawWithOctree](./algo_functions.md#sawwithoctree)
* [algo.mapUvOnCustomAABB](./algo_functions.md#mapuvoncustomaabb)
* [scene.findPartOccurrencesInAABB](./scene_functions.md#findpartoccurrencesinaabb)

***

### AABR

AABR stands for Axis Aligned Bounding Rectangle. It is a bounding surface which is aligned with the axes of the coordinates system.
Fields

| Type | Name   | Default | Description |
| ---- | ------ | ------- | ----------- |
| low  | Point2 |         |             |
| high | Point2 |         |             |

Functions accepting this type or a list of this type as a parameter:

* [cad.addPrecisionArea](./cad_functions.md#addprecisionarea)

***

### Affine

Affine transformation.
Fields

| Type   | Name    | Default             | Description |
| ------ | ------- | ------------------- | ----------- |
| origin | Point3  | geom.Point3(0,0,0)  |             |
| xAxis  | Vector3 | geom.Vector3(1,0,0) |             |
| yAxis  | Vector3 | geom.Vector3(0,1,0) |             |
| zAxis  | Vector3 | geom.Vector3(0,0,1) |             |

Functions accepting this type or a list of this type as a parameter:

* [geom.fromAffine](./geom_functions.md#fromaffine)

***

### Angle

Angle defines an angle in degree (in scripts). In the GUI, the unit can be modified.
Base class: [core.Double](./core_types.md#double)


**Frame:**
```mermaid
classDiagram
    class Angle
    Double <|-- Angle
```

Functions accepting this type or a list of this type as a parameter:

* [algo.crackEdges](./algo_functions.md#crackedges)
* [algo.createNormals](./algo_functions.md#createnormals)
* [algo.decimate](./algo_functions.md#decimate)
* [algo.decimateEdgeCollapse](./algo_functions.md#decimateedgecollapse)
* [algo.identifyPatches](./algo_functions.md#identifypatches)
* [algo.identifySharpEdges](./algo_functions.md#identifysharpedges)
* [algo.tessellate](./algo_functions.md#tessellate)
* [algo.tessellateRelativelyToAABB](./algo_functions.md#tessellaterelativelytoaabb)
* [algo.mergeUVIslandsAffine](./algo_functions.md#mergeuvislandsaffine)
* [geom.perspectiveMatrix](./geom_functions.md#perspectivematrix)
* [scene.addLightComponent](./scene_functions.md#addlightcomponent)
* [scene.createLight](./scene_functions.md#createlight)
* [scene.rotate](./scene_functions.md#rotate)
* [view.fitCamera](./view_functions.md#fitcamera)
* [algo.decimateEdgeCollapse](./algo_functions.md#decimateedgecollapse)
* [algo.evalDecimateErrorForTarget](./algo_functions.md#evaldecimateerrorfortarget)
* [algo.filletMesh](./algo_functions.md#filletmesh)
* [algo.filterMeshVertexColors](./algo_functions.md#filtermeshvertexcolors)
* [algo.findBestPivotBetweenOccurrences](./algo_functions.md#findbestpivotbetweenoccurrences)
* [algo.getOptimalTextureResolution](./algo_functions.md#getoptimaltextureresolution)
* [algo.getVisualComparisonFootprint](./algo_functions.md#getvisualcomparisonfootprint)
* [algo.optimizeTextureSize](./algo_functions.md#optimizetexturesize)
* [algo.tessellate](./algo_functions.md#tessellate)
* [algo.tessellateRelativelyToAABB](./algo_functions.md#tessellaterelativelytoaabb)
* [algo.bakeDepthMap](./algo_functions.md#bakedepthmap)
* [algo.bakeValidityMap](./algo_functions.md#bakevaliditymap)
* [algo.convexDecomposition](./algo_functions.md#convexdecomposition)
* [algo.createVisibilityInformation](./algo_functions.md#createvisibilityinformation)
* [algo.createVisibilityInformationFromViewPoints](./algo_functions.md#createvisibilityinformationfromviewpoints)
* [algo.findOccludedPartOccurrences](./algo_functions.md#findoccludedpartoccurrences)
* [algo.removeOccludedGeometries](./algo_functions.md#removeoccludedgeometries)
* [algo.removeOccludedGeometriesFromPoints](./algo_functions.md#removeoccludedgeometriesfrompoints)
* [algo.removeOccludedGeometriesFromViewPoints](./algo_functions.md#removeoccludedgeometriesfromviewpoints)
* [algo.dualContouring](./algo_functions.md#dualcontouring)
* [algo.sawWithOctree](./algo_functions.md#sawwithoctree)
* [algo.sawWithPlane](./algo_functions.md#sawwithplane)
* [algo.alignUVIslands](./algo_functions.md#alignuvislands)
* [algo.automaticUVMapping](./algo_functions.md#automaticuvmapping)
* [algo.mergeUVIslandsAffine](./algo_functions.md#mergeuvislandsaffine)
* [algo.mergeUVIslandsRelaxed](./algo_functions.md#mergeuvislandsrelaxed)
* [algo.scaleUV](./algo_functions.md#scaleuv)
* [algo.unwrapUV](./algo_functions.md#unwrapuv)
* [algo.orientPolygonFacesFromCamera](./algo_functions.md#orientpolygonfacesfromcamera)
* [algo.createVertexWeightsFromVertexColors](./algo_functions.md#createvertexweightsfromvertexcolors)
* [algo.createVertexWeightsFromVisibilityAttributes](./algo_functions.md#createvertexweightsfromvisibilityattributes)
* [cad.createHyperbolaCurve](./cad_functions.md#createhyperbolacurve)
* [cad.createIntersectionCurve](./cad_functions.md#createintersectioncurve)
* [cad.createNURBSCurve](./cad_functions.md#createnurbscurve)
* [cad.createParabolaCurve](./cad_functions.md#createparabolacurve)
* [cad.createPolylineCurve](./cad_functions.md#createpolylinecurve)
* [cad.invertCurve](./cad_functions.md#invertcurve)
* [cad.createLinearExtrusion](./cad_functions.md#createlinearextrusion)
* [cad.createRevolveExtrusion](./cad_functions.md#createrevolveextrusion)
* [cad.createBRepCone](./cad_functions.md#createbrepcone)
* [cad.createBRepCube](./cad_functions.md#createbrepcube)
* [cad.createBRepCylinder](./cad_functions.md#createbrepcylinder)
* [cad.createBRepPlane](./cad_functions.md#createbrepplane)
* [cad.createBRepSphere](./cad_functions.md#createbrepsphere)
* [cad.createBRepTorus](./cad_functions.md#createbreptorus)
* [cad.evalCurvatureOnCurve](./cad_functions.md#evalcurvatureoncurve)
* [cad.evalOnCurve](./cad_functions.md#evaloncurve)
* [cad.getParametricPrecisionOnSurface](./cad_functions.md#getparametricprecisiononsurface)
* [cad.invertOnCurve](./cad_functions.md#invertoncurve)
* [cad.invertOnSurface](./cad_functions.md#invertonsurface)
* [cad.projectOnCurve](./cad_functions.md#projectoncurve)
* [cad.projectOnSurface](./cad_functions.md#projectonsurface)
* [cad.createConeSurface](./cad_functions.md#createconesurface)
* [cad.createEllipticConeSurface](./cad_functions.md#createellipticconesurface)
* [cad.createNURBSSurface](./cad_functions.md#createnurbssurface)
* [cad.createOffsetSurface](./cad_functions.md#createoffsetsurface)
* [cad.createRevolutionSurface](./cad_functions.md#createrevolutionsurface)
* [geom.orthographicMatrix](./geom_functions.md#orthographicmatrix)
* [geom.perspectiveMatrix](./geom_functions.md#perspectivematrix)
* [material.convertHeightMapToNormalMap](./material_functions.md#convertheightmaptonormalmap)
* [material.filterAO](./material_functions.md#filterao)
* [material.getPointsAndMaterialFromText](./material_functions.md#getpointsandmaterialfromtext)
* [material.convertFloat32To8BitsImage](./material_functions.md#convertfloat32to8bitsimage)
* [material.getImageColorBilinear](./material_functions.md#getimagecolorbilinear)
* [material.rotateImage](./material_functions.md#rotateimage)
* [material.stretchImage](./material_functions.md#stretchimage)
* [material.translateImage](./material_functions.md#translateimage)
* [polygonal.createMeshFromText](./polygonal_functions.md#createmeshfromtext)
* [scene.createOccurrenceFromText](./scene_functions.md#createoccurrencefromtext)
* [scene.generateOctaViews](./scene_functions.md#generateoctaviews)
* [scene.generateOctree](./scene_functions.md#generateoctree)
* [scene.createCapsule](./scene_functions.md#createcapsule)
* [scene.createCone](./scene_functions.md#createcone)
* [scene.createCube](./scene_functions.md#createcube)
* [scene.createCylinder](./scene_functions.md#createcylinder)
* [scene.createImmersion](./scene_functions.md#createimmersion)
* [scene.createPlane](./scene_functions.md#createplane)
* [scene.createSphere](./scene_functions.md#createsphere)
* [scene.createTorus](./scene_functions.md#createtorus)
* [scene.addLightComponent](./scene_functions.md#addlightcomponent)
* [scene.createLight](./scene_functions.md#createlight)
* [scene.addKeyframe](./scene_functions.md#addkeyframe)
* [scene.decimateAnimChannelBySegment](./scene_functions.md#decimateanimchannelbysegment)
* [scene.updateSphereProber](./scene_functions.md#updatesphereprober)
* [view.playAnimation](./view_functions.md#playanimation)
* [view.setAnimationSpeed](./view_functions.md#setanimationspeed)

***

### Area

Area defines a surface in quadric meters (in scripts). In the GUI, the unit can be modified.
Base class: [core.Double](./core_types.md#double)


**Frame:**
```mermaid
classDiagram
    class Area
    Double <|-- Area
```

Functions accepting this type or a list of this type as a parameter:

* [algo.decimateEdgeCollapse](./algo_functions.md#decimateedgecollapse)
* [algo.evalDecimateErrorForTarget](./algo_functions.md#evaldecimateerrorfortarget)
* [algo.filletMesh](./algo_functions.md#filletmesh)
* [algo.filterMeshVertexColors](./algo_functions.md#filtermeshvertexcolors)
* [algo.findBestPivotBetweenOccurrences](./algo_functions.md#findbestpivotbetweenoccurrences)
* [algo.getOptimalTextureResolution](./algo_functions.md#getoptimaltextureresolution)
* [algo.getVisualComparisonFootprint](./algo_functions.md#getvisualcomparisonfootprint)
* [algo.optimizeTextureSize](./algo_functions.md#optimizetexturesize)
* [algo.tessellate](./algo_functions.md#tessellate)
* [algo.tessellateRelativelyToAABB](./algo_functions.md#tessellaterelativelytoaabb)
* [algo.bakeDepthMap](./algo_functions.md#bakedepthmap)
* [algo.bakeValidityMap](./algo_functions.md#bakevaliditymap)
* [algo.convexDecomposition](./algo_functions.md#convexdecomposition)
* [algo.createVisibilityInformation](./algo_functions.md#createvisibilityinformation)
* [algo.createVisibilityInformationFromViewPoints](./algo_functions.md#createvisibilityinformationfromviewpoints)
* [algo.findOccludedPartOccurrences](./algo_functions.md#findoccludedpartoccurrences)
* [algo.removeOccludedGeometries](./algo_functions.md#removeoccludedgeometries)
* [algo.removeOccludedGeometriesFromPoints](./algo_functions.md#removeoccludedgeometriesfrompoints)
* [algo.removeOccludedGeometriesFromViewPoints](./algo_functions.md#removeoccludedgeometriesfromviewpoints)
* [algo.dualContouring](./algo_functions.md#dualcontouring)
* [algo.sawWithOctree](./algo_functions.md#sawwithoctree)
* [algo.sawWithPlane](./algo_functions.md#sawwithplane)
* [algo.alignUVIslands](./algo_functions.md#alignuvislands)
* [algo.automaticUVMapping](./algo_functions.md#automaticuvmapping)
* [algo.mergeUVIslandsAffine](./algo_functions.md#mergeuvislandsaffine)
* [algo.mergeUVIslandsRelaxed](./algo_functions.md#mergeuvislandsrelaxed)
* [algo.scaleUV](./algo_functions.md#scaleuv)
* [algo.unwrapUV](./algo_functions.md#unwrapuv)
* [algo.orientPolygonFacesFromCamera](./algo_functions.md#orientpolygonfacesfromcamera)
* [algo.createVertexWeightsFromVertexColors](./algo_functions.md#createvertexweightsfromvertexcolors)
* [algo.createVertexWeightsFromVisibilityAttributes](./algo_functions.md#createvertexweightsfromvisibilityattributes)
* [cad.createHyperbolaCurve](./cad_functions.md#createhyperbolacurve)
* [cad.createIntersectionCurve](./cad_functions.md#createintersectioncurve)
* [cad.createNURBSCurve](./cad_functions.md#createnurbscurve)
* [cad.createParabolaCurve](./cad_functions.md#createparabolacurve)
* [cad.createPolylineCurve](./cad_functions.md#createpolylinecurve)
* [cad.invertCurve](./cad_functions.md#invertcurve)
* [cad.createLinearExtrusion](./cad_functions.md#createlinearextrusion)
* [cad.createRevolveExtrusion](./cad_functions.md#createrevolveextrusion)
* [cad.createBRepCone](./cad_functions.md#createbrepcone)
* [cad.createBRepCube](./cad_functions.md#createbrepcube)
* [cad.createBRepCylinder](./cad_functions.md#createbrepcylinder)
* [cad.createBRepPlane](./cad_functions.md#createbrepplane)
* [cad.createBRepSphere](./cad_functions.md#createbrepsphere)
* [cad.createBRepTorus](./cad_functions.md#createbreptorus)
* [cad.evalCurvatureOnCurve](./cad_functions.md#evalcurvatureoncurve)
* [cad.evalOnCurve](./cad_functions.md#evaloncurve)
* [cad.getParametricPrecisionOnSurface](./cad_functions.md#getparametricprecisiononsurface)
* [cad.invertOnCurve](./cad_functions.md#invertoncurve)
* [cad.invertOnSurface](./cad_functions.md#invertonsurface)
* [cad.projectOnCurve](./cad_functions.md#projectoncurve)
* [cad.projectOnSurface](./cad_functions.md#projectonsurface)
* [cad.createConeSurface](./cad_functions.md#createconesurface)
* [cad.createEllipticConeSurface](./cad_functions.md#createellipticconesurface)
* [cad.createNURBSSurface](./cad_functions.md#createnurbssurface)
* [cad.createOffsetSurface](./cad_functions.md#createoffsetsurface)
* [cad.createRevolutionSurface](./cad_functions.md#createrevolutionsurface)
* [geom.orthographicMatrix](./geom_functions.md#orthographicmatrix)
* [geom.perspectiveMatrix](./geom_functions.md#perspectivematrix)
* [material.convertHeightMapToNormalMap](./material_functions.md#convertheightmaptonormalmap)
* [material.filterAO](./material_functions.md#filterao)
* [material.getPointsAndMaterialFromText](./material_functions.md#getpointsandmaterialfromtext)
* [material.convertFloat32To8BitsImage](./material_functions.md#convertfloat32to8bitsimage)
* [material.getImageColorBilinear](./material_functions.md#getimagecolorbilinear)
* [material.rotateImage](./material_functions.md#rotateimage)
* [material.stretchImage](./material_functions.md#stretchimage)
* [material.translateImage](./material_functions.md#translateimage)
* [polygonal.createMeshFromText](./polygonal_functions.md#createmeshfromtext)
* [scene.createOccurrenceFromText](./scene_functions.md#createoccurrencefromtext)
* [scene.generateOctaViews](./scene_functions.md#generateoctaviews)
* [scene.generateOctree](./scene_functions.md#generateoctree)
* [scene.createCapsule](./scene_functions.md#createcapsule)
* [scene.createCone](./scene_functions.md#createcone)
* [scene.createCube](./scene_functions.md#createcube)
* [scene.createCylinder](./scene_functions.md#createcylinder)
* [scene.createImmersion](./scene_functions.md#createimmersion)
* [scene.createPlane](./scene_functions.md#createplane)
* [scene.createSphere](./scene_functions.md#createsphere)
* [scene.createTorus](./scene_functions.md#createtorus)
* [scene.addLightComponent](./scene_functions.md#addlightcomponent)
* [scene.createLight](./scene_functions.md#createlight)
* [scene.addKeyframe](./scene_functions.md#addkeyframe)
* [scene.decimateAnimChannelBySegment](./scene_functions.md#decimateanimchannelbysegment)
* [scene.updateSphereProber](./scene_functions.md#updatesphereprober)
* [view.playAnimation](./view_functions.md#playanimation)
* [view.setAnimationSpeed](./view_functions.md#setanimationspeed)

***

### Array3

Array of 3 [core.Double](./core_types.md#double)

Functions accepting this type or a list of this type as a parameter:

* [material.transformImage](./material_functions.md#transformimage)

***

### Array4

Array of 4 [core.Double](./core_types.md#double)

Functions accepting this type or a list of this type as a parameter:

* [algo.applyUvTransform](./algo_functions.md#applyuvtransform)
* [cad.createCircleCurve](./cad_functions.md#createcirclecurve)
* [cad.createCosinusCurve](./cad_functions.md#createcosinuscurve)
* [cad.createEllipseCurve](./cad_functions.md#createellipsecurve)
* [cad.createHelixCurve](./cad_functions.md#createhelixcurve)
* [cad.createHyperbolaCurve](./cad_functions.md#createhyperbolacurve)
* [cad.createParabolaCurve](./cad_functions.md#createparabolacurve)
* [cad.createTransformedCurve](./cad_functions.md#createtransformedcurve)
* [cad.createBRepCone](./cad_functions.md#createbrepcone)
* [cad.createBRepCube](./cad_functions.md#createbrepcube)
* [cad.createBRepCylinder](./cad_functions.md#createbrepcylinder)
* [cad.createBRepPlane](./cad_functions.md#createbrepplane)
* [cad.createBRepSphere](./cad_functions.md#createbrepsphere)
* [cad.createBRepTorus](./cad_functions.md#createbreptorus)
* [cad.createConeSurface](./cad_functions.md#createconesurface)
* [cad.createCylinderSurface](./cad_functions.md#createcylindersurface)
* [cad.createEllipticConeSurface](./cad_functions.md#createellipticconesurface)
* [cad.createPlaneSurface](./cad_functions.md#createplanesurface)
* [cad.createSphereSurface](./cad_functions.md#createspheresurface)
* [cad.createTorusSurface](./cad_functions.md#createtorussurface)
* [geom.applyTransform](./geom_functions.md#applytransform)
* [geom.decomposeTransform](./geom_functions.md#decomposetransform)
* [geom.fromLookAtMatrix](./geom_functions.md#fromlookatmatrix)
* [geom.getMaxScale](./geom_functions.md#getmaxscale)
* [geom.invertMatrix](./geom_functions.md#invertmatrix)
* [geom.matrixToQuaternion](./geom_functions.md#matrixtoquaternion)
* [geom.multiplyMatrices](./geom_functions.md#multiplymatrices)
* [geom.multiplyMatrixPoint](./geom_functions.md#multiplymatrixpoint)
* [geom.multiplyMatrixVector](./geom_functions.md#multiplymatrixvector)
* [geom.toTRS](./geom_functions.md#totrs)
* [material.getPointsAndMaterialFromText](./material_functions.md#getpointsandmaterialfromtext)
* [polygonal.createMeshFromText](./polygonal_functions.md#createmeshfromtext)
* [scene.applyTransformation](./scene_functions.md#applytransformation)
* [scene.setLocalMatrix](./scene_functions.md#setlocalmatrix)
* [scene.setPivotOnly](./scene_functions.md#setpivotonly)

***

### Axis

Enum of [core.Int](./core_types.md#int)

| Name | Value |
| ---- | ----- |
| X    | 0     |
| Y    | 1     |
| Z    | 2     |

***

### AxisPlane

Enum of [core.Int](./core_types.md#int)

| Name | Value |
| ---- | ----- |
| YZ   | 0     |
| ZX   | 1     |
| XY   | 2     |

Functions accepting this type or a list of this type as a parameter:

* [scene.createSymmetry](./scene_functions.md#createsymmetry)

***

### CameraCalibration

Calibration of a pinhole camera (intrisic+distortion parameters).
Fields

| Type        | Name   | Default | Description |
| ----------- | ------ | ------- | ----------- |
| radial1     | Double | 0       |             |
| radial2     | Double | 0       |             |
| radial3     | Double | 0       |             |
| tangential1 | Double | 0       |             |
| tangential2 | Double | 0       |             |
| focalX      | Double | 1       |             |
| focalY      | Double | 1       |             |
| centerX     | Double | 0       |             |
| centerY     | Double | 0       |             |
| skew        | Double | 0       |             |

***

### Curvatures

Fields

| Type | Name    | Default | Description |
| ---- | ------- | ------- | ----------- |
| k1   | Double  | 0       |             |
| k2   | Double  | 0       |             |
| v1   | Vector3 |         |             |
| v2   | Vector3 |         |             |

***

### CurvaturesList

List of [geom.Curvatures](./geom_types.md#curvatures)

***

### Distance

Distance defines a distance in millimeters (in scripts). In the GUI, the unit can be modified.
Base class: [core.Double](./core_types.md#double)


**Frame:**
```mermaid
classDiagram
    class Distance
    Double <|-- Distance
```

Functions accepting this type or a list of this type as a parameter:

* [algo.assembleCAD](./algo_functions.md#assemblecad)
* [algo.decimate](./algo_functions.md#decimate)
* [algo.decimateEdgeCollapse](./algo_functions.md#decimateedgecollapse)
* [algo.decimatePointClouds](./algo_functions.md#decimatepointclouds)
* [algo.extractNeutralAxis](./algo_functions.md#extractneutralaxis)
* [algo.filterHiddenPolygons](./algo_functions.md#filterhiddenpolygons)
* [algo.listFeatures](./algo_functions.md#listfeatures)
* [algo.mergeVertices](./algo_functions.md#mergevertices)
* [algo.noiseMesh](./algo_functions.md#noisemesh)
* [algo.removeHoles](./algo_functions.md#removeholes)
* [algo.repairCAD](./algo_functions.md#repaircad)
* [algo.sweep](./algo_functions.md#sweep)
* [algo.tessellate](./algo_functions.md#tessellate)
* [algo.tessellateRelativelyToAABB](./algo_functions.md#tessellaterelativelytoaabb)
* [algo.transferUV](./algo_functions.md#transferuv)
* [algo.voxelizePointClouds](./algo_functions.md#voxelizepointclouds)
* [algo.beginBakingSession](./algo_functions.md#beginbakingsession)
* [algo.beginVertexBakingSession](./algo_functions.md#beginvertexbakingsession)
* [algo.explodeByVoxel](./algo_functions.md#explodebyvoxel)
* [algo.createVisibilityInformationAdvanced](./algo_functions.md#createvisibilityinformationadvanced)
* [algo.findOccludedPartOccurrencesAdvanced](./algo_functions.md#findoccludedpartoccurrencesadvanced)
* [algo.removeOccludedGeometriesAdvanced](./algo_functions.md#removeoccludedgeometriesadvanced)
* [algo.createOcclusionMesh](./algo_functions.md#createocclusionmesh)
* [algo.dualContouring](./algo_functions.md#dualcontouring)
* [algo.marchingCubes](./algo_functions.md#marchingcubes)
* [algo.proxyMesh](./algo_functions.md#proxymesh)
* [algo.retopologize](./algo_functions.md#retopologize)
* [algo.voxelize](./algo_functions.md#voxelize)
* [algo.mapUvOnAABB](./algo_functions.md#mapuvonaabb)
* [algo.mapUvOnCubicAABB](./algo_functions.md#mapuvoncubicaabb)
* [algo.mapUvOnCustomAABB](./algo_functions.md#mapuvoncustomaabb)
* [algo.mapUvOnMBB](./algo_functions.md#mapuvonmbb)
* [algo.resizeUVsToTextureSize](./algo_functions.md#resizeuvstotexturesize)
* [algo.createCavityOccurrences](./algo_functions.md#createcavityoccurrences)
* [algo.remeshSurfacicHoles](./algo_functions.md#remeshsurfacicholes)
* [algo.removeDegeneratedPolygons](./algo_functions.md#removedegeneratedpolygons)
* [algo.repairMesh](./algo_functions.md#repairmesh)
* [algo.sewBoundary](./algo_functions.md#sewboundary)
* [algo.vertexOffset](./algo_functions.md#vertexoffset)
* [algo.orientPolygonFacesAdvanced](./algo_functions.md#orientpolygonfacesadvanced)
* [cad.setUnitLength](./cad_functions.md#setunitlength)
* [cad.createCircleCurve](./cad_functions.md#createcirclecurve)
* [cad.createCosinusCurve](./cad_functions.md#createcosinuscurve)
* [cad.createEllipseCurve](./cad_functions.md#createellipsecurve)
* [cad.createHelixCurve](./cad_functions.md#createhelixcurve)
* [cad.createModel](./cad_functions.md#createmodel)
* [cad.startThreadBrepSession](./cad_functions.md#startthreadbrepsession)
* [cad.createConeSurface](./cad_functions.md#createconesurface)
* [cad.createCylinderSurface](./cad_functions.md#createcylindersurface)
* [cad.createEllipticConeSurface](./cad_functions.md#createellipticconesurface)
* [cad.createSphereSurface](./cad_functions.md#createspheresurface)
* [cad.createTabulatedCylinderSurface](./cad_functions.md#createtabulatedcylindersurface)
* [cad.createTorusSurface](./cad_functions.md#createtorussurface)
* [geom.fromLookAtMatrix](./geom_functions.md#fromlookatmatrix)
* [geom.orthographicMatrix](./geom_functions.md#orthographicmatrix)
* [geom.perspectiveMatrix](./geom_functions.md#perspectivematrix)
* [scene.getViewpointsFromCavities](./scene_functions.md#getviewpointsfromcavities)
* [scene.getPartOccurrencesGroupedBySimilarity](./scene_functions.md#getpartoccurrencesgroupedbysimilarity)
* [scene.findDuplicatedPartOccurrences](./scene_functions.md#findduplicatedpartoccurrences)
* [scene.findPartOccurrencesByMaximumSize](./scene_functions.md#findpartoccurrencesbymaximumsize)
* [algo.decimateEdgeCollapse](./algo_functions.md#decimateedgecollapse)
* [algo.evalDecimateErrorForTarget](./algo_functions.md#evaldecimateerrorfortarget)
* [algo.filletMesh](./algo_functions.md#filletmesh)
* [algo.filterMeshVertexColors](./algo_functions.md#filtermeshvertexcolors)
* [algo.findBestPivotBetweenOccurrences](./algo_functions.md#findbestpivotbetweenoccurrences)
* [algo.getOptimalTextureResolution](./algo_functions.md#getoptimaltextureresolution)
* [algo.getVisualComparisonFootprint](./algo_functions.md#getvisualcomparisonfootprint)
* [algo.optimizeTextureSize](./algo_functions.md#optimizetexturesize)
* [algo.tessellate](./algo_functions.md#tessellate)
* [algo.tessellateRelativelyToAABB](./algo_functions.md#tessellaterelativelytoaabb)
* [algo.bakeDepthMap](./algo_functions.md#bakedepthmap)
* [algo.bakeValidityMap](./algo_functions.md#bakevaliditymap)
* [algo.convexDecomposition](./algo_functions.md#convexdecomposition)
* [algo.createVisibilityInformation](./algo_functions.md#createvisibilityinformation)
* [algo.createVisibilityInformationFromViewPoints](./algo_functions.md#createvisibilityinformationfromviewpoints)
* [algo.findOccludedPartOccurrences](./algo_functions.md#findoccludedpartoccurrences)
* [algo.removeOccludedGeometries](./algo_functions.md#removeoccludedgeometries)
* [algo.removeOccludedGeometriesFromPoints](./algo_functions.md#removeoccludedgeometriesfrompoints)
* [algo.removeOccludedGeometriesFromViewPoints](./algo_functions.md#removeoccludedgeometriesfromviewpoints)
* [algo.dualContouring](./algo_functions.md#dualcontouring)
* [algo.sawWithOctree](./algo_functions.md#sawwithoctree)
* [algo.sawWithPlane](./algo_functions.md#sawwithplane)
* [algo.alignUVIslands](./algo_functions.md#alignuvislands)
* [algo.automaticUVMapping](./algo_functions.md#automaticuvmapping)
* [algo.mergeUVIslandsAffine](./algo_functions.md#mergeuvislandsaffine)
* [algo.mergeUVIslandsRelaxed](./algo_functions.md#mergeuvislandsrelaxed)
* [algo.scaleUV](./algo_functions.md#scaleuv)
* [algo.unwrapUV](./algo_functions.md#unwrapuv)
* [algo.orientPolygonFacesFromCamera](./algo_functions.md#orientpolygonfacesfromcamera)
* [algo.createVertexWeightsFromVertexColors](./algo_functions.md#createvertexweightsfromvertexcolors)
* [algo.createVertexWeightsFromVisibilityAttributes](./algo_functions.md#createvertexweightsfromvisibilityattributes)
* [cad.createHyperbolaCurve](./cad_functions.md#createhyperbolacurve)
* [cad.createIntersectionCurve](./cad_functions.md#createintersectioncurve)
* [cad.createNURBSCurve](./cad_functions.md#createnurbscurve)
* [cad.createParabolaCurve](./cad_functions.md#createparabolacurve)
* [cad.createPolylineCurve](./cad_functions.md#createpolylinecurve)
* [cad.invertCurve](./cad_functions.md#invertcurve)
* [cad.createLinearExtrusion](./cad_functions.md#createlinearextrusion)
* [cad.createRevolveExtrusion](./cad_functions.md#createrevolveextrusion)
* [cad.createBRepCone](./cad_functions.md#createbrepcone)
* [cad.createBRepCube](./cad_functions.md#createbrepcube)
* [cad.createBRepCylinder](./cad_functions.md#createbrepcylinder)
* [cad.createBRepPlane](./cad_functions.md#createbrepplane)
* [cad.createBRepSphere](./cad_functions.md#createbrepsphere)
* [cad.createBRepTorus](./cad_functions.md#createbreptorus)
* [cad.evalCurvatureOnCurve](./cad_functions.md#evalcurvatureoncurve)
* [cad.evalOnCurve](./cad_functions.md#evaloncurve)
* [cad.getParametricPrecisionOnSurface](./cad_functions.md#getparametricprecisiononsurface)
* [cad.invertOnCurve](./cad_functions.md#invertoncurve)
* [cad.invertOnSurface](./cad_functions.md#invertonsurface)
* [cad.projectOnCurve](./cad_functions.md#projectoncurve)
* [cad.projectOnSurface](./cad_functions.md#projectonsurface)
* [cad.createConeSurface](./cad_functions.md#createconesurface)
* [cad.createEllipticConeSurface](./cad_functions.md#createellipticconesurface)
* [cad.createNURBSSurface](./cad_functions.md#createnurbssurface)
* [cad.createOffsetSurface](./cad_functions.md#createoffsetsurface)
* [cad.createRevolutionSurface](./cad_functions.md#createrevolutionsurface)
* [geom.orthographicMatrix](./geom_functions.md#orthographicmatrix)
* [geom.perspectiveMatrix](./geom_functions.md#perspectivematrix)
* [material.convertHeightMapToNormalMap](./material_functions.md#convertheightmaptonormalmap)
* [material.filterAO](./material_functions.md#filterao)
* [material.getPointsAndMaterialFromText](./material_functions.md#getpointsandmaterialfromtext)
* [material.convertFloat32To8BitsImage](./material_functions.md#convertfloat32to8bitsimage)
* [material.getImageColorBilinear](./material_functions.md#getimagecolorbilinear)
* [material.rotateImage](./material_functions.md#rotateimage)
* [material.stretchImage](./material_functions.md#stretchimage)
* [material.translateImage](./material_functions.md#translateimage)
* [polygonal.createMeshFromText](./polygonal_functions.md#createmeshfromtext)
* [scene.createOccurrenceFromText](./scene_functions.md#createoccurrencefromtext)
* [scene.generateOctaViews](./scene_functions.md#generateoctaviews)
* [scene.generateOctree](./scene_functions.md#generateoctree)
* [scene.createCapsule](./scene_functions.md#createcapsule)
* [scene.createCone](./scene_functions.md#createcone)
* [scene.createCube](./scene_functions.md#createcube)
* [scene.createCylinder](./scene_functions.md#createcylinder)
* [scene.createImmersion](./scene_functions.md#createimmersion)
* [scene.createPlane](./scene_functions.md#createplane)
* [scene.createSphere](./scene_functions.md#createsphere)
* [scene.createTorus](./scene_functions.md#createtorus)
* [scene.addLightComponent](./scene_functions.md#addlightcomponent)
* [scene.createLight](./scene_functions.md#createlight)
* [scene.addKeyframe](./scene_functions.md#addkeyframe)
* [scene.decimateAnimChannelBySegment](./scene_functions.md#decimateanimchannelbysegment)
* [scene.updateSphereProber](./scene_functions.md#updatesphereprober)
* [view.playAnimation](./view_functions.md#playanimation)
* [view.setAnimationSpeed](./view_functions.md#setanimationspeed)

***

### DistanceList

List of [geom.Distance](./geom_types.md#distance)

***

### ExtendedBox

A box defined by a location and extension sizes.
Fields

| Type     | Name     | Default | Description |
| -------- | -------- | ------- | ----------- |
| position | Point3   |         |             |
| extentX  | Distance | 1       |             |
| extentY  | Distance | 1       |             |
| extentZ  | Distance | 1       |             |

Functions accepting this type or a list of this type as a parameter:

* [scene.findPartOccurrencesInBox](./scene_functions.md#findpartoccurrencesinbox)

***

### GeomEntity

Base class: [core.Entity](./core_types.md#entity)

Derived classes:

* [CADEntity](./cad_types.md#cadentity)
* [Element](./polygonal_types.md#element)
* [Mesh](./polygonal_types.md#mesh)
* [Occurrence](./scene_types.md#occurrence)
* [Shape](./scene_types.md#shape)


**Frame:**
```mermaid
classDiagram
    class GeomEntity
    Entity <|-- GeomEntity
        GeomEntity <|-- CADEntity
        GeomEntity <|-- Element
        GeomEntity <|-- Mesh
        GeomEntity <|-- Occurrence
    Occurrence : +core.Ident Id
    Occurrence : +core.String Name
    Occurrence : +core.InheritableBool Visible
    Occurrence : +core.Entity Material
    Occurrence : +geom.Matrix4 Transform
    Occurrence : +core.Entity Prototype
        GeomEntity <|-- Shape
```

Functions accepting this type or a list of this type as a parameter:

* [geom.applyTransform](./geom_functions.md#applytransform)
* [geom.getEntityAABB](./geom_functions.md#getentityaabb)
* [core.cloneEntity](./core_functions.md#cloneentity)
* [core.deleteEntities](./core_functions.md#deleteentities)
* [core.entityExists](./core_functions.md#entityexists)
* [core.getEntityType](./core_functions.md#getentitytype)
* [core.getEntityTypeString](./core_functions.md#getentitytypestring)
* [core.addCustomProperties](./core_functions.md#addcustomproperties)
* [core.addCustomProperty](./core_functions.md#addcustomproperty)
* [core.getProperties](./core_functions.md#getproperties)
* [core.getProperty](./core_functions.md#getproperty)
* [core.getPropertyInfo](./core_functions.md#getpropertyinfo)
* [core.hasCustomProperty](./core_functions.md#hascustomproperty)
* [core.hasProperty](./core_functions.md#hasproperty)
* [core.listProperties](./core_functions.md#listproperties)
* [core.listPropertiesBatch](./core_functions.md#listpropertiesbatch)
* [core.removeCustomProperty](./core_functions.md#removecustomproperty)
* [core.setProperties](./core_functions.md#setproperties)
* [core.setProperty](./core_functions.md#setproperty)
* [core.supportCustomProperties](./core_functions.md#supportcustomproperties)
* [core.unsetProperty](./core_functions.md#unsetproperty)
* [scene.linkPropertyToAnimation](./scene_functions.md#linkpropertytoanimation)
* [scene.unlinkPropertyToAnimation](./scene_functions.md#unlinkpropertytoanimation)

***

### MBB

MBB stands for Minimum Bounding Box.
Base class: [geom.OBB](./geom_types.md#obb)


**Frame:**
```mermaid
classDiagram
    class MBB
    OBB <|-- MBB
```

Functions accepting this type or a list of this type as a parameter:

* [algo.sawWithOBB](./algo_functions.md#sawwithobb)

***

### Matrix3

A Matrix3 is a 3x3 Matrix, an homogeneous matrix representing a transformation (translation, rotation, scale) in a 2D coordinates system.
Array of 3 [geom.Array3](./geom_types.md#array3)

Functions accepting this type or a list of this type as a parameter:

* [material.transformImage](./material_functions.md#transformimage)

***

### Matrix4

A Matrix4 is a 4x4 Matrix, an homogeneous matrix representing a transformation (translation, rotation, scale) in a 3D coordinates system.
Array of 4 [geom.Array4](./geom_types.md#array4)

Functions accepting this type or a list of this type as a parameter:

* [algo.applyUvTransform](./algo_functions.md#applyuvtransform)
* [cad.createCircleCurve](./cad_functions.md#createcirclecurve)
* [cad.createCosinusCurve](./cad_functions.md#createcosinuscurve)
* [cad.createEllipseCurve](./cad_functions.md#createellipsecurve)
* [cad.createHelixCurve](./cad_functions.md#createhelixcurve)
* [cad.createHyperbolaCurve](./cad_functions.md#createhyperbolacurve)
* [cad.createParabolaCurve](./cad_functions.md#createparabolacurve)
* [cad.createTransformedCurve](./cad_functions.md#createtransformedcurve)
* [cad.createBRepCone](./cad_functions.md#createbrepcone)
* [cad.createBRepCube](./cad_functions.md#createbrepcube)
* [cad.createBRepCylinder](./cad_functions.md#createbrepcylinder)
* [cad.createBRepPlane](./cad_functions.md#createbrepplane)
* [cad.createBRepSphere](./cad_functions.md#createbrepsphere)
* [cad.createBRepTorus](./cad_functions.md#createbreptorus)
* [cad.createConeSurface](./cad_functions.md#createconesurface)
* [cad.createCylinderSurface](./cad_functions.md#createcylindersurface)
* [cad.createEllipticConeSurface](./cad_functions.md#createellipticconesurface)
* [cad.createPlaneSurface](./cad_functions.md#createplanesurface)
* [cad.createSphereSurface](./cad_functions.md#createspheresurface)
* [cad.createTorusSurface](./cad_functions.md#createtorussurface)
* [geom.applyTransform](./geom_functions.md#applytransform)
* [geom.decomposeTransform](./geom_functions.md#decomposetransform)
* [geom.fromLookAtMatrix](./geom_functions.md#fromlookatmatrix)
* [geom.getMaxScale](./geom_functions.md#getmaxscale)
* [geom.invertMatrix](./geom_functions.md#invertmatrix)
* [geom.matrixToQuaternion](./geom_functions.md#matrixtoquaternion)
* [geom.multiplyMatrices](./geom_functions.md#multiplymatrices)
* [geom.multiplyMatrixPoint](./geom_functions.md#multiplymatrixpoint)
* [geom.multiplyMatrixVector](./geom_functions.md#multiplymatrixvector)
* [geom.toTRS](./geom_functions.md#totrs)
* [material.getPointsAndMaterialFromText](./material_functions.md#getpointsandmaterialfromtext)
* [polygonal.createJointPlaceholders](./polygonal_functions.md#createjointplaceholders)
* [polygonal.createMeshFromText](./polygonal_functions.md#createmeshfromtext)
* [polygonal.setMeshSkinning](./polygonal_functions.md#setmeshskinning)
* [scene.createSceneFromMeshes](./scene_functions.md#createscenefrommeshes)
* [scene.applyTransformation](./scene_functions.md#applytransformation)
* [scene.setLocalMatrices](./scene_functions.md#setlocalmatrices)
* [scene.setLocalMatrix](./scene_functions.md#setlocalmatrix)
* [scene.setPartsTransforms](./scene_functions.md#setpartstransforms)
* [scene.setPartsTransformsIndexed](./scene_functions.md#setpartstransformsindexed)
* [scene.setPivotOnly](./scene_functions.md#setpivotonly)
* [view.setViewerMatrices](./view_functions.md#setviewermatrices)

***

### Matrix4List

List of [geom.Matrix4](./geom_types.md#matrix4)

Functions accepting this type or a list of this type as a parameter:

* [polygonal.createJointPlaceholders](./polygonal_functions.md#createjointplaceholders)
* [polygonal.setMeshSkinning](./polygonal_functions.md#setmeshskinning)
* [scene.createSceneFromMeshes](./scene_functions.md#createscenefrommeshes)
* [scene.setLocalMatrices](./scene_functions.md#setlocalmatrices)
* [scene.setPartsTransforms](./scene_functions.md#setpartstransforms)
* [scene.setPartsTransformsIndexed](./scene_functions.md#setpartstransformsindexed)
* [view.setViewerMatrices](./view_functions.md#setviewermatrices)

***

### Matrix4ListList

List of [geom.Matrix4List](./geom_types.md#matrix4list)

***

### OBB

OBB stands for Oriented Bounding Box.
Fields

| Type   | Name    | Default | Description |
| ------ | ------- | ------- | ----------- |
| corner | Point3  |         |             |
| xAxis  | Vector3 |         |             |
| yAxis  | Vector3 |         |             |
| zAxis  | Vector3 |         |             |

Derived class: [MBB](./geom_types.md#mbb)


**Frame:**
```mermaid
classDiagram
    class OBB
        OBB <|-- MBB
```

Functions accepting this type or a list of this type as a parameter:

* [algo.sawWithOBB](./algo_functions.md#sawwithobb)

***

### Orientation

An orientation can be normal (True) or inverted (False).
Base class: [core.Boolean](./core_types.md#boolean)


**Frame:**
```mermaid
classDiagram
    class Orientation
    Boolean <|-- Orientation
```

Functions accepting this type or a list of this type as a parameter:

* [cad.createClosedShell](./cad_functions.md#createclosedshell)
* [cad.createCoEdge](./cad_functions.md#createcoedge)
* [cad.createOpenShell](./cad_functions.md#createopenshell)
* [algo.assembleCAD](./algo_functions.md#assemblecad)
* [algo.bakeImpostor](./algo_functions.md#bakeimpostor)
* [algo.bakeVertexAttributes](./algo_functions.md#bakevertexattributes)
* [algo.configureFunctionLogger](./algo_functions.md#configurefunctionlogger)
* [algo.crackEdges](./algo_functions.md#crackedges)
* [algo.crackMeshEdges](./algo_functions.md#crackmeshedges)
* [algo.createNormals](./algo_functions.md#createnormals)
* [algo.createTangents](./algo_functions.md#createtangents)
* [algo.decimate](./algo_functions.md#decimate)
* [algo.decimateEdgeCollapse](./algo_functions.md#decimateedgecollapse)
* [algo.decimateTarget](./algo_functions.md#decimatetarget)
* [algo.deleteBRepShapes](./algo_functions.md#deletebrepshapes)
* [algo.deletePatches](./algo_functions.md#deletepatches)
* [algo.evalDecimateErrorForTarget](./algo_functions.md#evaldecimateerrorfortarget)
* [algo.extractNeutralAxis](./algo_functions.md#extractneutralaxis)
* [algo.filletMesh](./algo_functions.md#filletmesh)
* [algo.identifyLinesOfInterest](./algo_functions.md#identifylinesofinterest)
* [algo.identifyPatches](./algo_functions.md#identifypatches)
* [algo.identifySharpEdges](./algo_functions.md#identifysharpedges)
* [algo.invertTangents](./algo_functions.md#inverttangents)
* [algo.listFeatures](./algo_functions.md#listfeatures)
* [algo.removeHoles](./algo_functions.md#removeholes)
* [algo.repairCAD](./algo_functions.md#repaircad)
* [algo.segmentMesh](./algo_functions.md#segmentmesh)
* [algo.smoothMesh](./algo_functions.md#smoothmesh)
* [algo.sweep](./algo_functions.md#sweep)
* [algo.tessellate](./algo_functions.md#tessellate)
* [algo.tessellatePointClouds](./algo_functions.md#tessellatepointclouds)
* [algo.tessellateRelativelyToAABB](./algo_functions.md#tessellaterelativelytoaabb)
* [algo.bakeAOMap](./algo_functions.md#bakeaomap)
* [algo.bakeDiffuseMap](./algo_functions.md#bakediffusemap)
* [algo.bakeDisplacementMap](./algo_functions.md#bakedisplacementmap)
* [algo.bakePositionMap](./algo_functions.md#bakepositionmap)
* [algo.beginBakingSession](./algo_functions.md#beginbakingsession)
* [algo.beginVertexBakingSession](./algo_functions.md#beginvertexbakingsession)
* [algo.combineMaterials](./algo_functions.md#combinematerials)
* [algo.convexDecomposition](./algo_functions.md#convexdecomposition)
* [algo.explodeBodies](./algo_functions.md#explodebodies)
* [algo.explodeByVertexCount](./algo_functions.md#explodebyvertexcount)
* [algo.explodeConnectedMeshes](./algo_functions.md#explodeconnectedmeshes)
* [algo.createVisibilityInformation](./algo_functions.md#createvisibilityinformation)
* [algo.createVisibilityInformationAdvanced](./algo_functions.md#createvisibilityinformationadvanced)
* [algo.createVisibilityInformationFromViewPoints](./algo_functions.md#createvisibilityinformationfromviewpoints)
* [algo.findOccludedPartOccurrences](./algo_functions.md#findoccludedpartoccurrences)
* [algo.findOccludedPartOccurrencesAdvanced](./algo_functions.md#findoccludedpartoccurrencesadvanced)
* [algo.removeOccludedGeometries](./algo_functions.md#removeoccludedgeometries)
* [algo.removeOccludedGeometriesAdvanced](./algo_functions.md#removeoccludedgeometriesadvanced)
* [algo.removeOccludedGeometriesFromPoints](./algo_functions.md#removeoccludedgeometriesfrompoints)
* [algo.removeOccludedGeometriesFromViewPoints](./algo_functions.md#removeoccludedgeometriesfromviewpoints)
* [algo.dualContouring](./algo_functions.md#dualcontouring)
* [algo.marchingCubes](./algo_functions.md#marchingcubes)
* [algo.proxyMesh](./algo_functions.md#proxymesh)
* [algo.voxelize](./algo_functions.md#voxelize)
* [algo.replaceByPrimitive](./algo_functions.md#replacebyprimitive)
* [algo.convertSimilarPartOccurrencesToInstances](./algo_functions.md#convertsimilarpartoccurrencestoinstances)
* [algo.convertSimilarPartOccurrencesToInstancesFast](./algo_functions.md#convertsimilarpartoccurrencestoinstancesfast)
* [algo.findSimilarPartOccurrencesFast](./algo_functions.md#findsimilarpartoccurrencesfast)
* [algo.mapUvOnAABB](./algo_functions.md#mapuvonaabb)
* [algo.mapUvOnBox](./algo_functions.md#mapuvonbox)
* [algo.mapUvOnCubicAABB](./algo_functions.md#mapuvoncubicaabb)
* [algo.mapUvOnCustomAABB](./algo_functions.md#mapuvoncustomaabb)
* [algo.mapUvOnCylinder](./algo_functions.md#mapuvoncylinder)
* [algo.mapUvOnFittingCylinder](./algo_functions.md#mapuvonfittingcylinder)
* [algo.mapUvOnFittingSphere](./algo_functions.md#mapuvonfittingsphere)
* [algo.mapUvOnMBB](./algo_functions.md#mapuvonmbb)
* [algo.mapUvOnPlane](./algo_functions.md#mapuvonplane)
* [algo.mapUvOnSphere](./algo_functions.md#mapuvonsphere)
* [algo.mergeUVIslandsAffine](./algo_functions.md#mergeuvislandsaffine)
* [algo.mergeUVIslandsRelaxed](./algo_functions.md#mergeuvislandsrelaxed)
* [algo.normalizeUV](./algo_functions.md#normalizeuv)
* [algo.repackUV](./algo_functions.md#repackuv)
* [algo.unwrapUV](./algo_functions.md#unwrapuv)
* [algo.getFittingCylinder](./algo_functions.md#getfittingcylinder)
* [algo.getFittingSphere](./algo_functions.md#getfittingsphere)
* [algo.convertNormalMap](./algo_functions.md#convertnormalmap)
* [algo.remeshSurfacicHoles](./algo_functions.md#remeshsurfacicholes)
* [algo.repairMesh](./algo_functions.md#repairmesh)
* [algo.orientPolygonFaces](./algo_functions.md#orientpolygonfaces)
* [algo.orientPolygonFacesAdvanced](./algo_functions.md#orientpolygonfacesadvanced)
* [cad.configureFunctionLogger](./cad_functions.md#configurefunctionlogger)
* [cad.createHelixCurve](./cad_functions.md#createhelixcurve)
* [cad.createCoEdge](./cad_functions.md#createcoedge)
* [cad.createFace](./cad_functions.md#createface)
* [cad.createLoop](./cad_functions.md#createloop)
* [cad.invertFaces](./cad_functions.md#invertfaces)
* [core.configureFunctionLogger](./core_functions.md#configurefunctionlogger)
* [core.getEntitiesByType](./core_functions.md#getentitiesbytype)
* [core.installLicense](./core_functions.md#installlicense)
* [core.parallelStart](./core_functions.md#parallelstart)
* [core.getModuleDescFromXML](./core_functions.md#getmoduledescfromxml)
* [core.endUndoRedoStep](./core_functions.md#endundoredostep)
* [core.configureInterfaceLogger](./core_functions.md#configureinterfacelogger)
* [core.setLogFile](./core_functions.md#setlogfile)
* [geom.configureFunctionLogger](./geom_functions.md#configurefunctionlogger)
* [material.configureFunctionLogger](./material_functions.md#configurefunctionlogger)
* [material.copyMaterial](./material_functions.md#copymaterial)
* [material.createMaterial](./material_functions.md#creatematerial)
* [material.filterAO](./material_functions.md#filterao)
* [material.convertFloat32To8BitsImage](./material_functions.md#convertfloat32to8bitsimage)
* [material.convertImage](./material_functions.md#convertimage)
* [material.fillUnusedPixels](./material_functions.md#fillunusedpixels)
* [material.rotateImage](./material_functions.md#rotateimage)
* [material.stretchImage](./material_functions.md#stretchimage)
* [material.transformImage](./material_functions.md#transformimage)
* [material.translateImage](./material_functions.md#translateimage)
* [polygonal.configureFunctionLogger](./polygonal_functions.md#configurefunctionlogger)
* [process.decimateTargetBake](./process_functions.md#decimatetargetbake)
* [process.generateLODChainTarget](./process_functions.md#generatelodchaintarget)
* [scene.cleanUnusedMaterials](./scene_functions.md#cleanunusedmaterials)
* [scene.configureFunctionLogger](./scene_functions.md#configurefunctionlogger)
* [scene.createOccurrenceFromSelection](./scene_functions.md#createoccurrencefromselection)
* [scene.createSceneFromMeshes](./scene_functions.md#createscenefrommeshes)
* [scene.getAABB](./scene_functions.md#getaabb)
* [scene.getActivePropertyValue](./scene_functions.md#getactivepropertyvalue)
* [scene.getActivePropertyValues](./scene_functions.md#getactivepropertyvalues)
* [scene.mergeMaterials](./scene_functions.md#mergematerials)
* [scene.createCapsule](./scene_functions.md#createcapsule)
* [scene.createCone](./scene_functions.md#createcone)
* [scene.createCube](./scene_functions.md#createcube)
* [scene.createCylinder](./scene_functions.md#createcylinder)
* [scene.createPlane](./scene_functions.md#createplane)
* [scene.createSphere](./scene_functions.md#createsphere)
* [scene.createTorus](./scene_functions.md#createtorus)
* [scene.findPartOccurrencesByMaximumSize](./scene_functions.md#findpartoccurrencesbymaximumsize)
* [scene.findPartOccurrencesInBox](./scene_functions.md#findpartoccurrencesinbox)
* [scene.setParent](./scene_functions.md#setparent)
* [scene.mergePartOccurrencesByFinalAssemblies](./scene_functions.md#mergepartoccurrencesbyfinalassemblies)
* [scene.mergePartOccurrencesByMaterials](./scene_functions.md#mergepartoccurrencesbymaterials)
* [scene.convertPMIToOccurrences](./scene_functions.md#convertpmitooccurrences)
* [scene.createOccurrenceFromAnnotation](./scene_functions.md#createoccurrencefromannotation)
* [scene.cleanInstances](./scene_functions.md#cleaninstances)
* [scene.getSelectedOccurrences](./scene_functions.md#getselectedoccurrences)
* [scene.separateSelection](./scene_functions.md#separateselection)
* [scene.makeInstanceUnique](./scene_functions.md#makeinstanceunique)
* [scene.rake](./scene_functions.md#rake)
* [scene.resetTransform](./scene_functions.md#resettransform)
* [studio.askYesNo](./studio_functions.md#askyesno)
* [view.configureFunctionLogger](./view_functions.md#configurefunctionlogger)
* [view.playAnimation](./view_functions.md#playanimation)
* [view.setAnimationLoop](./view_functions.md#setanimationloop)
* [view.createStreamedViewer](./view_functions.md#createstreamedviewer)
* [algo.bakeImpostor](./algo_functions.md#bakeimpostor)
* [algo.createIndexMapFromOccurrences](./algo_functions.md#createindexmapfromoccurrences)
* [algo.createPointCloudKDTree](./algo_functions.md#createpointcloudkdtree)
* [algo.getVisualComparisonFootprint](./algo_functions.md#getvisualcomparisonfootprint)
* [algo.createVisibilityInformation](./algo_functions.md#createvisibilityinformation)
* [algo.findOccludedPartOccurrences](./algo_functions.md#findoccludedpartoccurrences)
* [algo.removeOccludedGeometries](./algo_functions.md#removeoccludedgeometries)
* [algo.retopologize](./algo_functions.md#retopologize)
* [algo.automaticUVMapping](./algo_functions.md#automaticuvmapping)
* [algo.mapUvOnAABB](./algo_functions.md#mapuvonaabb)
* [algo.mapUvOnMBB](./algo_functions.md#mapuvonmbb)
* [algo.createBillboard](./algo_functions.md#createbillboard)
* [algo.repairMesh](./algo_functions.md#repairmesh)
* [algo.requadify](./algo_functions.md#requadify)
* [core.listTokens](./core_functions.md#listtokens)
* [material.findMaterialsByProperty](./material_functions.md#findmaterialsbyproperty)
* [material.applyFactorOnImage](./material_functions.md#applyfactoronimage)
* [polygonal.getPolygonCount](./polygonal_functions.md#getpolygoncount)
* [process.proxyFromMeshes](./process_functions.md#proxyfrommeshes)
* [process.proxyFromPointCloud](./process_functions.md#proxyfrompointcloud)
* [scene.deleteComponentByType](./scene_functions.md#deletecomponentbytype)
* [scene.generateOctaViews](./scene_functions.md#generateoctaviews)
* [scene.getComponent](./scene_functions.md#getcomponent)
* [scene.getComponentByOccurrence](./scene_functions.md#getcomponentbyoccurrence)
* [scene.getComponents](./scene_functions.md#getcomponents)
* [scene.getPolygonCount](./scene_functions.md#getpolygoncount)
* [scene.getVertexCount](./scene_functions.md#getvertexcount)
* [scene.hasComponent](./scene_functions.md#hascomponent)
* [scene.listComponents](./scene_functions.md#listcomponents)
* [scene.resizeTextures](./scene_functions.md#resizetextures)
* [scene.findOccurrencesByMetadata](./scene_functions.md#findoccurrencesbymetadata)
* [scene.findOccurrencesByMetadataValue](./scene_functions.md#findoccurrencesbymetadatavalue)
* [scene.findOccurrencesByProperty](./scene_functions.md#findoccurrencesbyproperty)
* [scene.createSubTree](./scene_functions.md#createsubtree)
* [scene.displayValueFromAnimChannelAtTime](./scene_functions.md#displayvaluefromanimchannelattime)
* [scene.alignPivotPointToWorld](./scene_functions.md#alignpivotpointtoworld)
* [scene.movePivotPointToOccurrenceCenter](./scene_functions.md#movepivotpointtooccurrencecenter)
* [scene.movePivotPointToOrigin](./scene_functions.md#movepivotpointtoorigin)
* [scene.movePivotPointToTargetedOccurrenceCenter](./scene_functions.md#movepivotpointtotargetedoccurrencecenter)
* [view.stopAllAnimation](./view_functions.md#stopallanimation)
* [view.stopAnimation](./view_functions.md#stopanimation)
* [view.createGPUScene](./view_functions.md#creategpuscene)
* [view.pickRectangle](./view_functions.md#pickrectangle)
* [view.visibilityShoot](./view_functions.md#visibilityshoot)

***

### OrientationList

List of [geom.Orientation](./geom_types.md#orientation)

Functions accepting this type or a list of this type as a parameter:

* [cad.createClosedShell](./cad_functions.md#createclosedshell)
* [cad.createOpenShell](./cad_functions.md#createopenshell)

***

### Point2

A Point2 defines a position in 2D space.
Fields

| Type | Name   | Default | Description |
| ---- | ------ | ------- | ----------- |
| x    | Double | 0       |             |
| y    | Double | 0       |             |

Derived class: [Vector2](./geom_types.md#vector2)


**Frame:**
```mermaid
classDiagram
    class Point2
        Point2 <|-- Vector2
```

Functions accepting this type or a list of this type as a parameter:

* [cad.evalCurvatureOnSurface](./cad_functions.md#evalcurvatureonsurface)
* [cad.evalOnSurface](./cad_functions.md#evalonsurface)

***

### Point2List

List of [geom.Point2](./geom_types.md#point2)

***

### Point2ListList

List of [geom.Point2List](./geom_types.md#point2list)

***

### Point3

A Point3 defines a position in 3D space.
Fields

| Type | Name   | Default | Description |
| ---- | ------ | ------- | ----------- |
| x    | Double | 0       |             |
| y    | Double | 0       |             |
| z    | Double | 0       |             |

Derived class: [Vector3](./geom_types.md#vector3)


**Frame:**
```mermaid
classDiagram
    class Point3
        Point3 <|-- Vector3
```

Functions accepting this type or a list of this type as a parameter:

* [algo.createVisibilityInformationFromViewPoints](./algo_functions.md#createvisibilityinformationfromviewpoints)
* [algo.removeOccludedGeometriesFromPoints](./algo_functions.md#removeoccludedgeometriesfrompoints)
* [algo.removeOccludedGeometriesFromViewPoints](./algo_functions.md#removeoccludedgeometriesfromviewpoints)
* [algo.sawWithPlane](./algo_functions.md#sawwithplane)
* [algo.orientPolygonFacesFromCamera](./algo_functions.md#orientpolygonfacesfromcamera)
* [cad.createBezierCurve](./cad_functions.md#createbeziercurve)
* [cad.createHermiteCurve](./cad_functions.md#createhermitecurve)
* [cad.createLineCurve](./cad_functions.md#createlinecurve)
* [cad.createNURBSCurve](./cad_functions.md#createnurbscurve)
* [cad.createPolylineCurve](./cad_functions.md#createpolylinecurve)
* [cad.createSegmentCurve](./cad_functions.md#createsegmentcurve)
* [cad.createBoundedLinearExtrusion](./cad_functions.md#createboundedlinearextrusion)
* [cad.createRevolveExtrusion](./cad_functions.md#createrevolveextrusion)
* [cad.invertOnCurve](./cad_functions.md#invertoncurve)
* [cad.invertOnSurface](./cad_functions.md#invertonsurface)
* [cad.needTorusShapeCheck](./cad_functions.md#needtorusshapecheck)
* [cad.projectOnCurve](./cad_functions.md#projectoncurve)
* [cad.projectOnSurface](./cad_functions.md#projectonsurface)
* [cad.createVertex](./cad_functions.md#createvertex)
* [cad.createBezierSurface](./cad_functions.md#createbeziersurface)
* [cad.createNURBSSurface](./cad_functions.md#createnurbssurface)
* [cad.createRevolutionSurface](./cad_functions.md#createrevolutionsurface)
* [cad.createTabulatedCylinderSurface](./cad_functions.md#createtabulatedcylindersurface)
* [geom.changeOfBasisMatrix](./geom_functions.md#changeofbasismatrix)
* [geom.fromOriginNormal](./geom_functions.md#fromoriginnormal)
* [geom.lookAtMatrix](./geom_functions.md#lookatmatrix)
* [geom.multiplyMatrixPoint](./geom_functions.md#multiplymatrixpoint)
* [polygonal.usePointGapFillerNormal](./polygonal_functions.md#usepointgapfillernormal)

***

### Point3List

List of [geom.Point3](./geom_types.md#point3)

Functions accepting this type or a list of this type as a parameter:

* [algo.createVisibilityInformationFromViewPoints](./algo_functions.md#createvisibilityinformationfromviewpoints)
* [algo.removeOccludedGeometriesFromPoints](./algo_functions.md#removeoccludedgeometriesfrompoints)
* [algo.removeOccludedGeometriesFromViewPoints](./algo_functions.md#removeoccludedgeometriesfromviewpoints)
* [cad.createBezierCurve](./cad_functions.md#createbeziercurve)
* [cad.createNURBSCurve](./cad_functions.md#createnurbscurve)
* [cad.createPolylineCurve](./cad_functions.md#createpolylinecurve)
* [cad.needTorusShapeCheck](./cad_functions.md#needtorusshapecheck)
* [cad.createBezierSurface](./cad_functions.md#createbeziersurface)
* [cad.createNURBSSurface](./cad_functions.md#createnurbssurface)
* [polygonal.usePointGapFillerNormal](./polygonal_functions.md#usepointgapfillernormal)

***

### Point3ListList

List of [geom.Point3List](./geom_types.md#point3list)

***

### Point4

A Point4 defines a position in 3D space.
Fields

| Type | Name   | Default | Description |
| ---- | ------ | ------- | ----------- |
| x    | Double | 0       |             |
| y    | Double | 0       |             |
| z    | Double | 0       |             |
| w    | Double | 0       |             |

Derived classes:

* [Quaternion](./geom_types.md#quaternion)
* [Vector4](./geom_types.md#vector4)


**Frame:**
```mermaid
classDiagram
    class Point4
        Point4 <|-- Quaternion
        Point4 <|-- Vector4
```

***

### Point4List

List of [geom.Point4](./geom_types.md#point4)

***

### Quaternion

Base class: [geom.Point4](./geom_types.md#point4)


**Frame:**
```mermaid
classDiagram
    class Quaternion
    Point4 <|-- Quaternion
```

Functions accepting this type or a list of this type as a parameter:

* [geom.quaternionToMatrix](./geom_functions.md#quaterniontomatrix)

***

### Ray

Fields

| Type      | Name    | Default | Description |
| --------- | ------- | ------- | ----------- |
| origin    | Point3  |         |             |
| direction | Vector3 |         |             |

Functions accepting this type or a list of this type as a parameter:

* [scene.rayCast](./scene_functions.md#raycast)
* [scene.rayCastAll](./scene_functions.md#raycastall)
* [scene.updateRayProber](./scene_functions.md#updaterayprober)

***

### Vector2

Base class: [geom.Point2](./geom_types.md#point2)


**Frame:**
```mermaid
classDiagram
    class Vector2
    Point2 <|-- Vector2
```

Functions accepting this type or a list of this type as a parameter:

* [view.setViewerMatrices](./view_functions.md#setviewermatrices)
* [cad.evalCurvatureOnSurface](./cad_functions.md#evalcurvatureonsurface)
* [cad.evalOnSurface](./cad_functions.md#evalonsurface)

***

### Vector3

A Vector3 defines a vector in 3D space.
Base class: [geom.Point3](./geom_types.md#point3)


**Frame:**
```mermaid
classDiagram
    class Vector3
    Point3 <|-- Vector3
```

Functions accepting this type or a list of this type as a parameter:

* [algo.sawWithPlane](./algo_functions.md#sawwithplane)
* [algo.mapUvOnFittingCylinder](./algo_functions.md#mapuvonfittingcylinder)
* [algo.getFittingCylinder](./algo_functions.md#getfittingcylinder)
* [cad.createBoundedLinearExtrusion](./cad_functions.md#createboundedlinearextrusion)
* [cad.createCurveExtrusion](./cad_functions.md#createcurveextrusion)
* [cad.createLinearExtrusion](./cad_functions.md#createlinearextrusion)
* [cad.createRevolveExtrusion](./cad_functions.md#createrevolveextrusion)
* [cad.createRevolutionSurface](./cad_functions.md#createrevolutionsurface)
* [geom.changeOfBasisMatrix](./geom_functions.md#changeofbasismatrix)
* [geom.fromOriginNormal](./geom_functions.md#fromoriginnormal)
* [geom.fromTRS](./geom_functions.md#fromtrs)
* [geom.lookAtMatrix](./geom_functions.md#lookatmatrix)
* [geom.multiplyMatrixVector](./geom_functions.md#multiplymatrixvector)
* [polygonal.usePointGapFillerNormal](./polygonal_functions.md#usepointgapfillernormal)
* [scene.getMBB](./scene_functions.md#getmbb)
* [scene.rotate](./scene_functions.md#rotate)
* [scene.updateSphereProber](./scene_functions.md#updatesphereprober)
* [view.getAutoClipping](./view_functions.md#getautoclipping)
* [view.fitCamera](./view_functions.md#fitcamera)
* [algo.createVisibilityInformationFromViewPoints](./algo_functions.md#createvisibilityinformationfromviewpoints)
* [algo.removeOccludedGeometriesFromPoints](./algo_functions.md#removeoccludedgeometriesfrompoints)
* [algo.removeOccludedGeometriesFromViewPoints](./algo_functions.md#removeoccludedgeometriesfromviewpoints)
* [algo.sawWithPlane](./algo_functions.md#sawwithplane)
* [algo.orientPolygonFacesFromCamera](./algo_functions.md#orientpolygonfacesfromcamera)
* [cad.createBezierCurve](./cad_functions.md#createbeziercurve)
* [cad.createHermiteCurve](./cad_functions.md#createhermitecurve)
* [cad.createLineCurve](./cad_functions.md#createlinecurve)
* [cad.createNURBSCurve](./cad_functions.md#createnurbscurve)
* [cad.createPolylineCurve](./cad_functions.md#createpolylinecurve)
* [cad.createSegmentCurve](./cad_functions.md#createsegmentcurve)
* [cad.createBoundedLinearExtrusion](./cad_functions.md#createboundedlinearextrusion)
* [cad.createRevolveExtrusion](./cad_functions.md#createrevolveextrusion)
* [cad.invertOnCurve](./cad_functions.md#invertoncurve)
* [cad.invertOnSurface](./cad_functions.md#invertonsurface)
* [cad.needTorusShapeCheck](./cad_functions.md#needtorusshapecheck)
* [cad.projectOnCurve](./cad_functions.md#projectoncurve)
* [cad.projectOnSurface](./cad_functions.md#projectonsurface)
* [cad.createVertex](./cad_functions.md#createvertex)
* [cad.createBezierSurface](./cad_functions.md#createbeziersurface)
* [cad.createNURBSSurface](./cad_functions.md#createnurbssurface)
* [cad.createRevolutionSurface](./cad_functions.md#createrevolutionsurface)
* [cad.createTabulatedCylinderSurface](./cad_functions.md#createtabulatedcylindersurface)
* [geom.changeOfBasisMatrix](./geom_functions.md#changeofbasismatrix)
* [geom.fromOriginNormal](./geom_functions.md#fromoriginnormal)
* [geom.lookAtMatrix](./geom_functions.md#lookatmatrix)
* [geom.multiplyMatrixPoint](./geom_functions.md#multiplymatrixpoint)
* [polygonal.usePointGapFillerNormal](./polygonal_functions.md#usepointgapfillernormal)

***

### Vector3List

List of [geom.Vector3](./geom_types.md#vector3)

Functions accepting this type or a list of this type as a parameter:

* [polygonal.usePointGapFillerNormal](./polygonal_functions.md#usepointgapfillernormal)

***

### Vector4

Base class: [geom.Point4](./geom_types.md#point4)


**Frame:**
```mermaid
classDiagram
    class Vector4
    Point4 <|-- Vector4
```

***

### Vector4I

A Vector4 has 4 int components.
Fields

| Type | Name | Default | Description |
| ---- | ---- | ------- | ----------- |
| x    | Int  | 0       |             |
| y    | Int  | 0       |             |
| z    | Int  | 0       |             |
| w    | Int  | 0       |             |

***

### Vector4IList

List of [geom.Vector4I](./geom_types.md#vector4i)

***

### Vector4List

List of [geom.Vector4](./geom_types.md#vector4)

***

### Volume

Volume defines a volume in cubic meters (in scripts). In the GUI, the unit can be modified.
Base class: [core.Double](./core_types.md#double)


**Frame:**
```mermaid
classDiagram
    class Volume
    Double <|-- Volume
```

Functions accepting this type or a list of this type as a parameter:

* [algo.createVisibilityInformationAdvanced](./algo_functions.md#createvisibilityinformationadvanced)
* [algo.findOccludedPartOccurrencesAdvanced](./algo_functions.md#findoccludedpartoccurrencesadvanced)
* [algo.removeOccludedGeometriesAdvanced](./algo_functions.md#removeoccludedgeometriesadvanced)
* [algo.createCavityOccurrences](./algo_functions.md#createcavityoccurrences)
* [algo.orientPolygonFacesAdvanced](./algo_functions.md#orientpolygonfacesadvanced)
* [algo.decimateEdgeCollapse](./algo_functions.md#decimateedgecollapse)
* [algo.evalDecimateErrorForTarget](./algo_functions.md#evaldecimateerrorfortarget)
* [algo.filletMesh](./algo_functions.md#filletmesh)
* [algo.filterMeshVertexColors](./algo_functions.md#filtermeshvertexcolors)
* [algo.findBestPivotBetweenOccurrences](./algo_functions.md#findbestpivotbetweenoccurrences)
* [algo.getOptimalTextureResolution](./algo_functions.md#getoptimaltextureresolution)
* [algo.getVisualComparisonFootprint](./algo_functions.md#getvisualcomparisonfootprint)
* [algo.optimizeTextureSize](./algo_functions.md#optimizetexturesize)
* [algo.tessellate](./algo_functions.md#tessellate)
* [algo.tessellateRelativelyToAABB](./algo_functions.md#tessellaterelativelytoaabb)
* [algo.bakeDepthMap](./algo_functions.md#bakedepthmap)
* [algo.bakeValidityMap](./algo_functions.md#bakevaliditymap)
* [algo.convexDecomposition](./algo_functions.md#convexdecomposition)
* [algo.createVisibilityInformation](./algo_functions.md#createvisibilityinformation)
* [algo.createVisibilityInformationFromViewPoints](./algo_functions.md#createvisibilityinformationfromviewpoints)
* [algo.findOccludedPartOccurrences](./algo_functions.md#findoccludedpartoccurrences)
* [algo.removeOccludedGeometries](./algo_functions.md#removeoccludedgeometries)
* [algo.removeOccludedGeometriesFromPoints](./algo_functions.md#removeoccludedgeometriesfrompoints)
* [algo.removeOccludedGeometriesFromViewPoints](./algo_functions.md#removeoccludedgeometriesfromviewpoints)
* [algo.dualContouring](./algo_functions.md#dualcontouring)
* [algo.sawWithOctree](./algo_functions.md#sawwithoctree)
* [algo.sawWithPlane](./algo_functions.md#sawwithplane)
* [algo.alignUVIslands](./algo_functions.md#alignuvislands)
* [algo.automaticUVMapping](./algo_functions.md#automaticuvmapping)
* [algo.mergeUVIslandsAffine](./algo_functions.md#mergeuvislandsaffine)
* [algo.mergeUVIslandsRelaxed](./algo_functions.md#mergeuvislandsrelaxed)
* [algo.scaleUV](./algo_functions.md#scaleuv)
* [algo.unwrapUV](./algo_functions.md#unwrapuv)
* [algo.orientPolygonFacesFromCamera](./algo_functions.md#orientpolygonfacesfromcamera)
* [algo.createVertexWeightsFromVertexColors](./algo_functions.md#createvertexweightsfromvertexcolors)
* [algo.createVertexWeightsFromVisibilityAttributes](./algo_functions.md#createvertexweightsfromvisibilityattributes)
* [cad.createHyperbolaCurve](./cad_functions.md#createhyperbolacurve)
* [cad.createIntersectionCurve](./cad_functions.md#createintersectioncurve)
* [cad.createNURBSCurve](./cad_functions.md#createnurbscurve)
* [cad.createParabolaCurve](./cad_functions.md#createparabolacurve)
* [cad.createPolylineCurve](./cad_functions.md#createpolylinecurve)
* [cad.invertCurve](./cad_functions.md#invertcurve)
* [cad.createLinearExtrusion](./cad_functions.md#createlinearextrusion)
* [cad.createRevolveExtrusion](./cad_functions.md#createrevolveextrusion)
* [cad.createBRepCone](./cad_functions.md#createbrepcone)
* [cad.createBRepCube](./cad_functions.md#createbrepcube)
* [cad.createBRepCylinder](./cad_functions.md#createbrepcylinder)
* [cad.createBRepPlane](./cad_functions.md#createbrepplane)
* [cad.createBRepSphere](./cad_functions.md#createbrepsphere)
* [cad.createBRepTorus](./cad_functions.md#createbreptorus)
* [cad.evalCurvatureOnCurve](./cad_functions.md#evalcurvatureoncurve)
* [cad.evalOnCurve](./cad_functions.md#evaloncurve)
* [cad.getParametricPrecisionOnSurface](./cad_functions.md#getparametricprecisiononsurface)
* [cad.invertOnCurve](./cad_functions.md#invertoncurve)
* [cad.invertOnSurface](./cad_functions.md#invertonsurface)
* [cad.projectOnCurve](./cad_functions.md#projectoncurve)
* [cad.projectOnSurface](./cad_functions.md#projectonsurface)
* [cad.createConeSurface](./cad_functions.md#createconesurface)
* [cad.createEllipticConeSurface](./cad_functions.md#createellipticconesurface)
* [cad.createNURBSSurface](./cad_functions.md#createnurbssurface)
* [cad.createOffsetSurface](./cad_functions.md#createoffsetsurface)
* [cad.createRevolutionSurface](./cad_functions.md#createrevolutionsurface)
* [geom.orthographicMatrix](./geom_functions.md#orthographicmatrix)
* [geom.perspectiveMatrix](./geom_functions.md#perspectivematrix)
* [material.convertHeightMapToNormalMap](./material_functions.md#convertheightmaptonormalmap)
* [material.filterAO](./material_functions.md#filterao)
* [material.getPointsAndMaterialFromText](./material_functions.md#getpointsandmaterialfromtext)
* [material.convertFloat32To8BitsImage](./material_functions.md#convertfloat32to8bitsimage)
* [material.getImageColorBilinear](./material_functions.md#getimagecolorbilinear)
* [material.rotateImage](./material_functions.md#rotateimage)
* [material.stretchImage](./material_functions.md#stretchimage)
* [material.translateImage](./material_functions.md#translateimage)
* [polygonal.createMeshFromText](./polygonal_functions.md#createmeshfromtext)
* [scene.createOccurrenceFromText](./scene_functions.md#createoccurrencefromtext)
* [scene.generateOctaViews](./scene_functions.md#generateoctaviews)
* [scene.generateOctree](./scene_functions.md#generateoctree)
* [scene.createCapsule](./scene_functions.md#createcapsule)
* [scene.createCone](./scene_functions.md#createcone)
* [scene.createCube](./scene_functions.md#createcube)
* [scene.createCylinder](./scene_functions.md#createcylinder)
* [scene.createImmersion](./scene_functions.md#createimmersion)
* [scene.createPlane](./scene_functions.md#createplane)
* [scene.createSphere](./scene_functions.md#createsphere)
* [scene.createTorus](./scene_functions.md#createtorus)
* [scene.addLightComponent](./scene_functions.md#addlightcomponent)
* [scene.createLight](./scene_functions.md#createlight)
* [scene.addKeyframe](./scene_functions.md#addkeyframe)
* [scene.decimateAnimChannelBySegment](./scene_functions.md#decimateanimchannelbysegment)
* [scene.updateSphereProber](./scene_functions.md#updatesphereprober)
* [view.playAnimation](./view_functions.md#playanimation)
* [view.setAnimationSpeed](./view_functions.md#setanimationspeed)
