C# Class WaveEngine.Components.Primitives.Geometric

Base class for geometric primitives.
Datei anzeigen Open project: WaveEngine/Components

Public Methods

Method Description
Dispose ( ) : void

Releases unmanaged and - optionally - managed resources.

Protected Methods

Method Description
AddIndex ( int index ) : void

Adds a new index to the primitive model.

This should only be called during the initialization process, before InitializePrimitive.

AddVertex ( System.Vector3 position, System.Vector3 normal ) : void

Adds a new vertex to the primitive model.

This should only be called during the initialization process, before InitializePrimitive.

AddVertex ( System.Vector3 position, System.Vector3 normal, System.Vector2 texcoord ) : void

Adds a new vertex to the primitive model.

This should only be called during the initialization process, before InitializePrimitive.

AddVertex ( System.Vector3 position, System.Vector3 normal, System.Vector3 tangent, System.Vector2 texcoord ) : void

Adds a new vertex to the primitive model.

This should only be called during the initialization process, before InitializePrimitive.

Dispose ( bool disposing ) : void

Releases unmanaged and - optionally - managed resources.

Geometric ( ) : System

Initializes a new instance of the Geometric class.

GetSphericalTexCoord ( System.Vector3 normal ) : System.Vector2

Gets the spherical texture coordinates.

Private Methods

Method Description
CalculateTangentSpace ( ) : void

Calculate tangent space of the geometry

Method Details

AddIndex() protected method

Adds a new index to the primitive model.
This should only be called during the initialization process, before InitializePrimitive.
protected AddIndex ( int index ) : void
index int The index.
return void

AddVertex() protected method

Adds a new vertex to the primitive model.
This should only be called during the initialization process, before InitializePrimitive.
protected AddVertex ( System.Vector3 position, System.Vector3 normal ) : void
position System.Vector3 The position.
normal System.Vector3 The normal.
return void

AddVertex() protected method

Adds a new vertex to the primitive model.
This should only be called during the initialization process, before InitializePrimitive.
protected AddVertex ( System.Vector3 position, System.Vector3 normal, System.Vector2 texcoord ) : void
position System.Vector3 The position.
normal System.Vector3 The normal.
texcoord System.Vector2 The texture coordinate.
return void

AddVertex() protected method

Adds a new vertex to the primitive model.
This should only be called during the initialization process, before InitializePrimitive.
protected AddVertex ( System.Vector3 position, System.Vector3 normal, System.Vector3 tangent, System.Vector2 texcoord ) : void
position System.Vector3 The position.
normal System.Vector3 The normal.
tangent System.Vector3 The tangent.
texcoord System.Vector2 The texture coordinate.
return void

Dispose() public method

Releases unmanaged and - optionally - managed resources.
public Dispose ( ) : void
return void

Dispose() protected method

Releases unmanaged and - optionally - managed resources.
protected Dispose ( bool disposing ) : void
disposing bool true to release both managed and unmanaged resources; false to release only unmanaged resources.
return void

Geometric() protected method

Initializes a new instance of the Geometric class.
protected Geometric ( ) : System
return System

GetSphericalTexCoord() protected method

Gets the spherical texture coordinates.
protected GetSphericalTexCoord ( System.Vector3 normal ) : System.Vector2
normal System.Vector3 The normal.
return System.Vector2