Click or drag to resize
DigitalRuneMeshHelperCreateCone Method
Creates a new submesh that represents a cone using triangles. (The cone is standing on the xz plane pointing along the y axis. Radius = 1. Height = 1.)

Namespace: DigitalRune.Graphics
Assembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntax
public static Submesh CreateCone(
	GraphicsDevice graphicsDevice,
	int numberOfSegments
)

Parameters

graphicsDevice
Type: GraphicsDevice
The graphics device.
numberOfSegments
Type: SystemInt32
The number of segments. This parameter controls the detail of the mesh.

Return Value

Type: Submesh
A new Submesh that represents a cone.
Exceptions
ExceptionCondition
ArgumentNullExceptiongraphicsDevice is .
ArgumentOutOfRangeExceptionnumberOfSegments is less than or equal to 2.
Remarks
If the returned Submesh is not going to be modified, then it is better to call GetCone(IGraphicsService) to retrieve a shared Submesh instance.
See Also