AddContourFuncMapGraph Method
The AddContourFuncMapGraph method creates a new 3D Contour function map. Returns an AutoGraph object.
Syntax
object.AddContourFuncMapGraph( function, firstX, lastX, firstZ, lastZ, id )
Parameter | Type | Description |
function | String | required, function Y = f(X,Z) |
bXZ | Variant | optional, default = false, true for XZ Map |
id | Variant | optional, graph name |
Example
This example shows how to create a XZ Contour function map graph.
Shapes.AddContourFuncMapGraph(“(pow(x,2) + pow(z,2)) * (sin(8*atan2(x,z)))”, True)
Used by: AutoShapes collection
See Also