Vector#

Usage:

Vector Class API Wrapper

class Vector[source]#

Bases: object

Wrapper for Vector class of Moldflow Synergy.

set_xyz(x, y, z)[source]#

Set the x, y, z values of the vector.

Parameters:
  • x (float) – The x value.

  • y (float) – The y value.

  • z (float) – The z value.

Return type:

None

property x: float#

Value of x in vector

Getter:

Get the value of x property.

Setter:

Set the value of x property.

Type:

float

property y: float#

Value of y in vector

Getter:

Get the value of y property.

Setter:

Set the value of y property.

Type:

float

property z: float#

Value of z in vector

Getter:

Get the value of z property.

Setter:

Set the value of z property.

Type:

float