You are here: Start » AVL.NET » Invoke.LoadSurfaceWithImage

Invoke.LoadSurfaceWithImage

Loads entities from a file of one of available types as an array of points in 3D and an image. Assumes an unordered grid with possible holes.

Namespace:Avl
Assembly:AvlNet.dll

Syntax

C++
C#
 
public static void LoadSurfaceWithImage
(
	string inFile,
	Avl.Point3DFileFormat inFileFormat,
	double inXScale,
	Avl.ValueLimits_f64 inXLimits,
	double inYScale,
	Avl.ValueLimits_f64 inYLimits,
	double inZOffset,
	double inZScale,
	Avl.PlainType inPointType,
	Avl.SurfaceMultipointHeight inMultipointHeight,
	Avl.Pixel inBackgroundColor,
	Avl.Surface outSurface,
	Avl.Image outImage,
	Optional<double> outMinX,
	Optional<double> outMinY,
	Diagnostic<Avl.Region> diagSurfaceValidPointsRegion
)

Parameters

Name Type Range Default Description
inFilestring
inFileFormatAvl.Point3DFileFormat
inXScaledouble<0.000001, INF>1.0DDefault value: 1.0D.
inXLimitsAvl.ValueLimits_f64
inYScaledouble<0.000001, INF>1.0DDefault value: 1.0D.
inYLimitsAvl.ValueLimits_f64
inZOffsetdouble
inZScaledouble<0.000001, INF>1.0DDefault value: 1.0D.
inPointTypeAvl.PlainTypeRealType of single surface point Z coordinate. Default value: Real.
inMultipointHeightAvl.SurfaceMultipointHeightMeanDetermines the Z coordinate of a surface point created from more than one point. Default value: Mean.
inBackgroundColorAvl.Pixel
outSurfaceAvl.Surface
outImageAvl.ImageOutput image.
outMinXAtl.Optional<double>
outMinYAtl.Optional<double>
diagSurfaceValidPointsRegionAvl.Diagnostic<Avl.Region>Region of locations where the surface points are valid.

See also