Erstellt einen Glyph innerhalb eines Streamline-Abschnittes, dessen Länge je nach Glyphen-Größe variiert.


Namespace: Flowvis
Assembly: Flowvis (in Flowvis.exe)

Syntax

Visual Basic (Declaration)
Private Sub CreateGlyph( _ 
   ByVal streamlineSamplepoints As List(Of Vector2),  _ 
   ByVal streamlineVerts As List(Of PositionColored),  _ 
   ByVal newSamplePoint As Vector2,  _ 
   ByVal forward As Boolean,  _ 
   ByVal doStreamlineEmboss As Boolean _ 
)
C#
private void CreateGlyph(
   List<Vector2> streamlineSamplepoints,
   List<PositionColored> streamlineVerts,
   Vector2 newSamplePoint,
   bool forward,
   bool doStreamlineEmboss
)
C++
private:
 void CreateGlyph(
   List<Vector2> streamlineSamplepoints,
   List<PositionColored> streamlineVerts,
   Vector2 newSamplePoint,
   bool forward,
   bool doStreamlineEmboss
) sealed 
J#
private void CreateGlyph(
   List<Vector2> streamlineSamplepoints,
   List<PositionColored> streamlineVerts,
   Vector2 newSamplePoint,
   bool forward,
   bool doStreamlineEmboss
)
JScript
private  function CreateGlyph(
   streamlineSamplepoints : List<Vector2>,
   streamlineVerts : List<PositionColored>,
   newSamplePoint : Vector2,
   forward : bool,
   doStreamlineEmboss : bool
)

Parameters

streamlineSamplepoints
streamlineVerts
newSamplePoint
forward
doStreamlineEmboss

See Also