Click or drag to resize
AB4D logo

HeightMapVisual3DGetPositionValues Method

GetPositionValues returns a List of double values (get from HeightData) that represents values for each position that is used for the MeshGeometry3D that shows this height map (position value at index 0 represents the value from HeightData that is used to show first position in MeshGeometry3D).

Namespace: Ab3d.Visuals
Assembly: Ab3d.PowerToys (in Ab3d.PowerToys.dll) Version: 11.1.8864.1045
Syntax
C#
public List<double> GetPositionValues(
	double offset = 0,
	double scale = 1
)

Parameters

offset  Double  (Optional)
optional offset value that is added to each value (0 by default)
scale  Double  (Optional)
optional scale value that is multiplied by each value (1 by default)

Return Value

ListDouble
List of double values (get from HeightData) that represents values for each position that is used for the MeshGeometry3D
See Also