AddPlaneSurface

Creates a plane surface.

Syntax

rhinoscriptsyntax.AddPlaneSurface (plane, u_dir, v_dir)

rhinoscript.surface.AddPlaneSurface (plane, u_dir, v_dir)

Parameters

plane

Required.  Array.  The plane.

u_dir

Required.  Number.  The magnitude in the U direction.

v_dir

Required.  Number.  The magnitude in the V direction.

Returns

Guid

The identifier of the new object if successful.

None

If not successful, or on error.

Example

import rhinoscriptsyntax as rs

rs.AddPlaneSurface( rs.WorldXYPlane(), 5.0, 3.0 )

Also See

AddCutPlane

AddEdgeSrf

AddSrfControlPtGrid

AddSrfPt

AddSrfPtGrid

IsPlaneSurface