Collapse AllExpand All Code: All Code: Multiple Code: C# Code: Visual Basic Code: Visual C++
|
[TCheckBoxFormControlObj]C#
[TCheckBoxFormControlObj]Visual Basic
[TCheckBoxFormControlObj]
|
<
<
(<'Particle, Vertex>)>)> Class
|
|
The Base Particle System Framework Class. This class contains the methods and properties needed to keep track of, update, and draw Particles
Namespace: DPSF
Assembly: DPSF (in DPSF.dll) Version: 2.5.0.0
Syntax
C#
|
[SerializableAttribute]
public abstract class DPSF<Particle, Vertex> : IDPSFParticleSystem
where Particle : new(), DPSFParticle
where Vertex : struct, new(), IDPSFParticleVertex
|
Visual Basic
|
<SerializableAttribute>
Public MustInherit Class DPSF(Of Particle As {New, DPSFParticle}, Vertex As {Structure, New, IDPSFParticleVertex})
Implements IDPSFParticleSystem
|
Visual C++
|
[SerializableAttribute]
generic<typename Particle, typename Vertex>
where Particle : gcnew(), DPSFParticle
where Vertex : value class, gcnew(), IDPSFParticleVertex
public ref class DPSF abstract : IDPSFParticleSystem
|
Type Parameters
Particle
The Particle class used to hold a particle's information. The Particle class specified must be or inherit from the DPSFParticle class
Vertex
The Particle Vertex struct used to hold a vertex's information used for drawing
Inheritance Hierarchy
System..::..Object
DPSF..::..DPSF<(Of <(<'Particle, Vertex>)>)>
DPSF..::..DPSFDefaultBaseParticleSystem<(Of <(<'Particle, Vertex>)>)>
See Also
DPSF<(Of <(<'Particle, Vertex>)>)> Members
DPSF Namespace
Send comments on this topic to
|