ECG/exercise3/include/example_primitives.h

15 lines
397 B
C
Raw Permalink Normal View History

2019-05-31 11:29:18 +00:00
//
// 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);
};