| MeshHelperCreateHemisphere Method |
Creates a new submesh that represents a spherical cap using triangles.
(The sphere is centered at the origin. Radius = 1. The submesh contains only the
top half (+y) of the sphere.)
Namespace: DigitalRune.GraphicsAssembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntax public static Submesh CreateHemisphere(
GraphicsDevice graphicsDevice,
int numberOfSegments
)
Public Shared Function CreateHemisphere (
graphicsDevice As GraphicsDevice,
numberOfSegments As Integer
) As Submesh
public:
static Submesh^ CreateHemisphere(
GraphicsDevice^ graphicsDevice,
int numberOfSegments
)
static member CreateHemisphere :
graphicsDevice : GraphicsDevice *
numberOfSegments : int -> Submesh
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:
SubmeshA new
Submesh that represents a hemisphere.
Exceptions Remarks See Also