TABLE OF CONTENTS
- 1. ScPovPlot3D/Migrations.inc
- 2. VectorField.inc/DrawPathLines
- 3. VectorField.inc/MakeSpline
- 4. VectorField.inc/MakeSplineV
ScPovPlot3D/Migrations.inc [ Modules ]
PURPOSE
Fig.[GridnColorMap] Nothing
********************************************************* ** Tested on PovRay 3.7 ** ** License: GNU GPL ** ** Homepage: http://scpovplot3d.sourceforge.net ** ********************************************************* ** version: 3.2.0.6 (& have a nice time ;) ** *********************************************************
AUTHOR
Janusz Opiła Ph.D.
jmo@agh.edu.pl, janusz.opila@gmail.com Dept. of Applied Informatics AGH University of Science & Technology, Cracow, Poland Maintained by Janusz Opiła Ph.D.
HISTORY
2016-10-08 - Initial release
COPYRIGHT
GNU GPL v.3 License (c) 2012-now by Janusz Opiła Ph.D. AGH University of Science and Technology
VectorField.inc/DrawPathLines [ Main macros ]
[ Top ] [ VectorField.inc ] [ Main macros ]
PURPOSE
Draws streamlines based on Streamline table _SL, spline type _splt and texture _txt. Uses _EndingPointRad internal global variable
SYNOPSIS
#macro DrawPathLines ( _SL, _splt )// - table, spline, texture
INPUTS
garray _SL - streamlines table over N lines over N_i nodes integer _splt - interpolation type: 2 - bezier spline, 3 - cubic spline, other - linear_spline
SIDE EFFECTS
Uses _EndingPointRad & _PthLinRadius internal global variables, governing radius of points.
SEE ALSO
ComputeStreamline, VectorCF, DrawStreamLines
VectorField.inc/MakeSpline [ Main macros ]
[ Top ] [ VectorField.inc ] [ Main macros ]
PURPOSE
Defines spline object based on Pathline/Streamline table _SL, spline type _splt and REAL timestep --
SYNOPSIS
#macro MakeSpline ( _SL, _splt, _pth )// - pathline table, spline type 1/2/3, path number, 1..N
INPUTS
garray _SL - streamlines table over N lines over N_i nodes integer _splt - interpolation type: 2 - bezier spline, 3 - cubic spline, other - linear_spline integer _pth - path index, 1..N
SIDE EFFECTS
Nothing
SEE ALSO
ComputeStreamline, VectorCF, DrawStreamLines, DrawPathLines
VectorField.inc/MakeSplineV [ Main macros ]
[ Top ] [ VectorField.inc ] [ Main macros ]
PURPOSE
Defines spline object based on Pathline/Streamline table _SL, spline type _splt and synthesized, ie. Virtual timestep --
SYNOPSIS
#macro MakeSplineV ( _SL, _splt, _pth )// - pathline table, spline type 1/2/3, path number, 1..N
INPUTS
garray _SL - streamlines table over N lines over N_i nodes integer _splt - interpolation type: 2 - bezier spline, 3 - cubic spline, other - linear_spline integer _pth - path index, 1..N
SIDE EFFECTS
Nothing
SEE ALSO