Skip to content

Latest commit

 

History

History
45 lines (37 loc) · 703 Bytes

File metadata and controls

45 lines (37 loc) · 703 Bytes

OvalN

Description

Creates an oval with the specified bounds.

PROCEDURE OvalN(
				orginX,orginY         : REAL;
				directionX,directionY : REAL;
				width                 : REAL;
				height                : REAL);
def vs.OvalN(orgin, direction, width, height):
    return None

Parameters

Name Type Description
orgin REAL
direction REAL
width REAL
height REAL

Examples

VectorScript

PROCEDURE Example;
BEGIN
OvalN(0, 0, 1, 0, 1, 1);
END;
RUN(Example);

Python

Version

Availability: from VectorWorks13.0

Category