Click or drag to resize
AB4D logo

ExtensionsDump(Geometry3D, Int32, String) Method

Display details about specified Geometry3D to Debug console (for example to Visual Studio's Immediate window).

Namespace: Ab3d
Assembly: Ab3d.PowerToys (in Ab3d.PowerToys.dll) Version: 11.1.8864.1045
Syntax
C#
public static void Dump(
	this Geometry3D geometry,
	int maxLineCount,
	string valuesStringFormat
)

Parameters

geometry  Geometry3D
mesh as MeshGeometry3D
maxLineCount  Int32
maximum number of displayed lines. If less or equal than 0 all lines are displayed
valuesStringFormat  String
string format to display values: for example "0.00" to show only 2 decimals; "" to show all decimals; "0" - no decimals

Return Value

the positions, normals and texture coordinates of the MeshGeometry3D

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Geometry3D. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also