ECG/exercise3/include/example_primitives.h
2019-05-31 13:29:18 +02:00

15 lines
397 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_primitives: public abstract_scene
{
public:
void render();
void set_text(std::stringstream &stream);
};