Integriert Streamline von gegebenem Punkt aus weiter.
Namespace: Flowvis
Assembly: Flowvis (in Flowvis.exe)
Syntax
Visual Basic (Declaration) |
---|
Private Function IntegrateStreamline( _ ByVal currPoint As Vector3, _ ByVal forward As Boolean, _ ByVal dT As Single, _ ByVal integrationMethod As Integer _ ) As Vector3 |
C# |
---|
private Vector3 IntegrateStreamline( Vector3 currPoint, bool forward, float dT, int integrationMethod ) |
C++ |
---|
private: Vector3 IntegrateStreamline( Vector3 currPoint, bool forward, float dT, int integrationMethod ) sealed |
J# |
---|
private Vector3 IntegrateStreamline( Vector3 currPoint, bool forward, float dT, int integrationMethod ) |
JScript |
---|
private
function IntegrateStreamline( currPoint : Vector3, forward : bool, dT : float, integrationMethod : int ) : Vector3 |
Parameters
- currPoint
- Punkt, von dem aus weiter integriert werden soll.
- forward
- Flag, ob nach vorne, oder nach hinten (Strömungsrichtung) integriert werden soll.
- dT
- Schrittweite.
- integrationMethod
- Integrationsmethode: 0 = Runge-Kutta, 1 = Euler.
Return Value
Vector mit dem neuen Sample-Point, der durch die numerische Integration errechnet wurde.