Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F95108741
renderable.h
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Thu, Dec 12, 22:36
Size
297 B
Mime Type
text/x-c++
Expires
Sat, Dec 14, 22:36 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22932692
Attached To
rSYMKIT symkit
renderable.h
View Options
#ifndef __RENDERABLE_H__
#define __RENDERABLE_H__
namespace symkit
{
struct render_s;
}
class Renderable
{
public:
virtual ~Renderable() {}
virtual void render(symkit::render_s&) = 0;
virtual bool isRendering() const = 0;
virtual bool isFillMode() const = 0;
};
#endif
Event Timeline
Log In to Comment