1. NodeBox 1
    1. Homepage
    2. NodeBox 3Node-based app for generative design and data visualization
    3. NodeBox OpenGLHardware-accelerated cross-platform graphics library
    4. NodeBox 1Generate 2D visuals using Python code (Mac OS X only)
  2. Gallery
  3. Documentation
  4. Forum
  5. Blog

Reference | skew()


Syntax
skew(x, y=None)

DescriptionSlants the direction of all subsequent shape, path, text, image commands. The first parameter sets the horizontal skew. The second parameter is optional and sets the vertical skew. The skew() command works incremental: if you call skew(10), and later on call skew(20), all commands following that second skew() will be skewed by 30 (10+20).
Tutorial Graphics State 


Example
fill(0.2)
skew(10.0)
rect(20, 10, 40, 40)