Transformations#

import veux
from xsection.library import from_aisc

shape = from_aisc("W14x211")
veux.render(shape.model)

Translation#

The translate method creates a new shape that is translated in space

shape = shape.translate([-3.0, 0])
veux.render(shape.model)

Rotation#

The rotate method rotates a section:

import math
shape = shape.rotate(math.pi/4)
veux.render(shape.model)