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