Changeset View
Changeset View
Standalone View
Standalone View
source/blender/freestyle/intern/stroke/PSStrokeRenderer.h
| Show All 34 Lines | |||||
| /* PSStrokeRenderer */ | /* PSStrokeRenderer */ | ||||
| /* */ | /* */ | ||||
| /* */ | /* */ | ||||
| /**********************************/ | /**********************************/ | ||||
| class PSStrokeRenderer : public StrokeRenderer { | class PSStrokeRenderer : public StrokeRenderer { | ||||
| public: | public: | ||||
| PSStrokeRenderer(const char *iFileName = NULL); | PSStrokeRenderer(const char *iFileName = NULL); | ||||
| virtual ~PSStrokeRenderer(); | |||||
| /*! Renders a stroke rep */ | /*! Renders a stroke rep */ | ||||
| virtual void RenderStrokeRep(StrokeRep *iStrokeRep) const; | virtual void RenderStrokeRep(StrokeRep *iStrokeRep) const; | ||||
| virtual void RenderStrokeRepBasic(StrokeRep *iStrokeRep) const; | virtual void RenderStrokeRepBasic(StrokeRep *iStrokeRep) const; | ||||
| /*! Closes the output PS file */ | |||||
| void Close(); | |||||
| protected: | protected: | ||||
| mutable ofstream _ofstream; | mutable ofstream _ofstream; | ||||
| }; | }; | ||||
| } /* namespace Freestyle */ | } /* namespace Freestyle */ | ||||