LoadPoint3DGridWithImage
Loads entities from a file of one of available types as an array of points in 3D and an image. Assumes an ordered rectangular grid with no holes.
Syntax
C++
C#
Python
def LoadPoint3DGridWithImage( inFile: str, outPoint3DGrid: Point3DGrid, outImage: Image, /, *, inFileFormat: Point3DFileFormat = Point3DFileFormat.STL, inImageWidth: int | None = None, inImageHeight: int | None = None ) -> None
Parameters
| Name | Type | Range | Default | Description | |
|---|---|---|---|---|---|
![]() |
inFile | str | |||
![]() |
inFileFormat | Point3DFileFormat | Point3DFileFormat.STL | ||
![]() |
inImageWidth | int | None | 1 - 65535 | None | An override for the point cloud width |
![]() |
inImageHeight | int | None | 1 - 65535 | None | An override for the point cloud height |
![]() |
outPoint3DGrid | Point3DGrid | |||
![]() |
outImage | Image | Output image |


