Help for this page

Select Code to Download


  1. or download this
    typedef struct {
      float x;
      float y;
      float z;
    } vec3d;
    
  2. or download this
    vec3d vertices[20];
    
  3. or download this
    my %vert = (
      'x' => undef, # placeholder
      'y' => undef,
      'z' => undef,
    );