The VectorPlotHeadScale option changes the size of the arrows for the VectorPlot. The OptionValue is a number between 0 and 5.
This value has no afftect when the VectorPlotVectorStyle is set to Line or Fade.
Syntax
object.Construct(“CreateModule”)
object.Option(“SourceModule”, “data file name”)
object.Option(“Type”, “VectorPlot”)
object.Do() or object.DoOnce()
object.Construct(“ModifyModule”)
object.Option(“Module”, “VectorPlot”)
object.Option(“VectorPlotHeadScale”, “OptionValue”)
object.Do() or object.DoOnce()
Example 1
This example changes the size of the vector arrowhead.
CommandApi.Construct("ModifyModule")
CommandApi.Option ("Module", "VectorPlot")
CommandApi.Option ("VectorPlotHeadScale", "0.34")
CommandApi.Do()
Used by: VectorPlot module
See Also