Click or drag to resize
Ab4d.SharpEngine logo

MeshUtilsCreateOutlinePositionsMesh Method

CreateOutlinePositionsMesh creates a new TriangleMesh that is created by moving all positions for the specified outlineDistance in the direction of the normal. The TriangleMesh is created with Vector3 as position vertex layout. To create StandardMesh with PositionNormalTexture vertex layout use CreateOutlineStandardMesh(StandardMesh, Single, Transform, String).

Namespace: Ab4d.SharpEngine.Utilities
Assembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 3.0.9208+3b2441d6a11f923f2600f40f4296bdc3d8b46035
Syntax
C#
public static TriangleMesh<Vector3>? CreateOutlinePositionsMesh(
	StandardMesh mesh,
	float outlineDistance,
	Transform? transform = null,
	string? meshName = null
)

Parameters

mesh  StandardMesh
original StandardMesh
outlineDistance  Single
distance of the moved positions
transform  Transform  (Optional)
optional transformation
meshName  String  (Optional)
optional name of the created mesh

Return Value

TriangleMeshVector3
TriangleMesh with Vector3 as vertex layout (only position)
See Also