VIZ++ Class: TextureCoordTriangularBox

 VIZ++ Class Library  VIZ++ Samples  VIZ++ ClassTree 

Source code

/*
 * TextureCoordTriangularBox.h 
 * Copyright (c) 2015 Antillia.com TOSHIYUKI ARAI. ALL RIGHTS RESERVED. 
 */

 
#pragma once


#include <viz++/Object.h>

#include <viz++/opengl/TextureCoord2Vertex3.h>

namespace VIZ {

class TextureCoordTriangularBox : public Object {
private:
  TextureCoord2Vertex3* box;
  int numberOfElements;
  int numberOfFaces;
  int numberOfVerticesPerFace;
  
public:
  TextureCoordTriangularBox(GLfloat x=1.0f, GLfloat y=1.0f, GLfloat z=1.0f)
  :box(NULL),
  numberOfElements(0),
  numberOfFaces(0),
  numberOfVerticesPerFace(0)
  {
    TextureCoord2Vertex3 boxData[] = {
        // Front
        // Face 0-1-2
        {{1.0f, 1.0f}, {  x,  y, z}},
        {{0.0f, 1.0f}, { -x,  y, z}},
        {{0.0f, 0.0f}, { -x, -y, z}},
        // Face 2-3-0
        {{0.0f, 0.0f}, { -x, -y, z}},
        {{1.0f, 0.0f}, {  x, -y, z}},
        {{1.0f, 1.0f}, {  x,  y, z}},

        // Right
        // Face 0-3-4
        {{0.0f, 1.0f}, {  x,  y,  z}},
        {{0.0f, 0.0f}, {  x, -y,  z}},
        {{1.0f, 0.0f}, {  x, -y, -z}},
        // Face 4-5-0
        {{1.0f, 0.0f}, {  x, -y, -z}},
        {{1.0f, 1.0f}, {  x,  y, -z}},
        {{0.0f, 1.0f}, {  x,  y,  z}},

        // Top 
        // Face 0-5-6
        {{1.0f, 0.0f}, {  x,  y,  z}},
        {{1.0f, 1.0f}, {  x,  y, -z}},
        {{0.0f, 1.0f}, { -x,  y, -z}},
        // Face 6-1-0
        {{0.0f, 1.0f}, { -x,  y, -z}},
        {{0.0f, 0.0f}, { -x,  y,  z}},
        {{1.0f, 0.0f}, {  x,  y,  z}},

        // Left
        // Face  1-6-7
        {{1.0f, 1.0f}, { -x,  y,  z}},
        {{0.0f, 1.0f}, { -x,  y, -z}},
        {{0.0f, 0.0f}, { -x, -y, -z}},
        // Face 7-2-1
        {{0.0f, 0.0f}, { -x, -y, -z}},
        {{1.0f, 0.0f}, { -x, -y,  z}},
        {{1.0f, 1.0f}, { -x,  y,  z}},

        // Bottom 
        // Face 7-4-3
        {{0.0f, 0.0f}, { -x, -y, -z}},
        {{1.0f, 0.0f}, {  x, -y, -z}},
        {{1.0f, 1.0f}, {  x, -y,  z}},
        // Face 3-2-7
        {{1.0f, 1.0f}, {  x, -y,  z}},
        {{0.0f, 1.0f}, { -x, -y,  z}},
        {{0.0f, 0.0f}, { -x, -y, -z}},

        // Back
        // Face 4-7-6
        {{0.0f, 0.0f}, {  x, -y, -z}},
        {{1.0f, 0.0f}, { -x, -y, -z}},
        {{1.0f, 1.0f}, { -x,  y, -z}},
        // Face 6-5-4
        {{1.0f, 1.0f}, { -x,  y, -z}},
        {{0.0f, 1.0f}, {  x,  y, -z}},
        {{0.0f, 0.0f}, {  x, -y, -z}},
    };
    this->numberOfElements = CountOf(boxData);

    this->box = new TextureCoord2Vertex3[this->numberOfElements];
    memcpy(this->box, boxData, sizeof(boxData));

      
    this->numberOfFaces    = 6;
    this->numberOfVerticesPerFace = 6;
  }

  ~TextureCoordTriangularBox()
  {
    delete [] box;
    box = NULL;
  }
    
  TextureCoord2Vertex3* getData()
  {
    return box;
  }
  
  int getNumberOfElements()
  {
    return numberOfElements;
  }
  
  int getNumberOfFaces()
  {
    return numberOfFaces;
  }
  
  int getNumberOfVerticesPerFace()
  {
    return numberOfVerticesPerFace;
  }
};

}
       
       

Last modified: 10 Feb 2017

Copyright (c) 2009-2017 Antillia.com ALL RIGHTS RESERVED.