21 lines
493 B
C
21 lines
493 B
C
|
//
|
||
|
// This source code is property of the Computer Graphics and Visualization
|
||
|
// chair of the TU Dresden. Do not distribute in modified or unmodified form!
|
||
|
// Copyright (C) 2016 CGV TU Dresden - All Rights Reserved
|
||
|
//
|
||
|
#pragma once
|
||
|
|
||
|
#include "abstract_scene.h"
|
||
|
|
||
|
class example_trans_order: public abstract_scene
|
||
|
{
|
||
|
public:
|
||
|
example_trans_order();
|
||
|
void render();
|
||
|
void set_text(std::stringstream &stream);
|
||
|
void advance_frame();
|
||
|
|
||
|
private:
|
||
|
int angle;
|
||
|
void render_quad();
|
||
|
};
|