Example of using "Canvas" form "Graphics" library to display 3D graphics.

Dependencies:   BSP_DISCO_F746NG Graphics mbed

Models/Cube.h

Committer:
karpent
Date:
2016-11-10
Revision:
1:4a5e329e617b
Child:
3:aca7fe2d44b3

File content as of revision 1:4a5e329e617b:

//
// Cube.h - example of usage graphics commands to create 3D graphics.
//
// This example is based on code written by
// Fabio de Albuquerque Dela Antonio (fabio914 at gmail.com)
// See : https://github.com/fabio914/arduinogl/blob/master/examples
//

#pragma once

#include <ArduinoGL.h>
#include "Angle.h"

/**
 * @brief 3D model of the cube
 */
class Cube : public Angle
{
public:

    Cube(Display* display);

    /**
    * @brief  Model setup.
    * @retval None
    */
    void Setup();

    /**
    * @brief  Render single frame on the display.
    * @retval None
    */
    void Render();

private:

    void DrawCube();
    
    float _perspectiveAspect;
};