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
Input value inFile str
Input value inFileFormat Point3DFileFormat Point3DFileFormat.STL
Input value inImageWidth int | None 1 - 65535 None An override for the point cloud width
Input value inImageHeight int | None 1 - 65535 None An override for the point cloud height
Output value outPoint3DGrid Point3DGrid
Output value outImage Image Output image