|
Chemical Data Processing Library C++ API - Version 1.1.1
|
Go to the documentation of this file.
29 #ifndef CDPL_VIS_PATH2DCONVERTER_HPP
30 #define CDPL_VIS_PATH2DCONVERTER_HPP
61 virtual void moveTo(
double x,
double y) = 0;
72 virtual void arcTo(
double cx,
double cy,
double rx,
double ry,
double start_ang,
double sweep) = 0;
79 virtual void lineTo(
double x,
double y) = 0;
89 #endif // CDPL_VIS_PATH2DCONVERTER_HPP
virtual void closePath()=0
Called when a Vis::Path2D element created by a Vis::Path2D::closePath() call is encountered.
virtual ~Path2DConverter()
Virtual destructor.
Definition: Path2DConverter.hpp:54
virtual void lineTo(double x, double y)=0
Called when a Vis::Path2D element created by a Vis::Path2D::lineTo() call is encountered.
#define CDPL_VIS_API
Tells the compiler/linker which classes, functions and variables are part of the library API.
Provides an interface for classes that implement the conversion of Vis::Path2D objects into rendering...
Definition: Path2DConverter.hpp:48
The namespace of the Chemical Data Processing Library.
virtual void arcTo(double cx, double cy, double rx, double ry, double start_ang, double sweep)=0
Called when a Vis::Path2D element created by a Vis::Path2D::arcTo() call is encountered.
Definition of the preprocessor macro CDPL_VIS_API.
virtual void moveTo(double x, double y)=0
Called when a Vis::Path2D element created by a Vis::Path2D::moveTo() call is encountered.