Searched defs:Path (Results 1 - 7 of 7) sorted by relevance
/inkscape/src/libdepixelize/ |
H A D | splines.h | 42 struct Path struct in class:Tracer::Splines 52 typedef std::vector<Path>::iterator iterator; 53 typedef std::vector<Path>::const_iterator const_iterator; 102 std::vector<Path> _paths;
|
/inkscape/src/libdepixelize/priv/ |
H A D | optimization-kopf2011.h | 191 typedef std::vector< Point<T> > Path; typedef 193 Path ret = path; 208 for ( typename Path::size_type j = 0 ; j != ret.size() ; ++j ) { 216 typename Path::iterator it = ret.begin() + j; 217 typename Path::difference_type skip
|
/inkscape/share/extensions/ink2canvas/ |
H A D | svg.py | 203 class Path(AbstractShape): class in inherits:AbstractShape 314 class Line(Path): 323 class Polygon(Path):
|
/inkscape/src/livarot/ |
H A D | Path.cpp | 2 * Path.cpp 10 #include "Path.h" 20 Path::Path() function in class:Path 29 Path::~Path() 37 void Path::Affiche() 48 void Path::Reset() 60 void Path::Copy(Path * wh [all...] |
H A D | Path.h | 2 * Path.h 26 * the Path class: a structure to hold path description and their polyline approximation (not kept in sync) 52 class Path class 97 Path(); 98 virtual ~Path(); 102 void Copy (Path * who); 137 // give each different Path a different ID, and feed the appropriate orig[] to the ConvertToForme() function 146 // build a Path that is the outline of the Path instance's description (the result is stored in dest) 149 void Outline(Path *des [all...] |
/inkscape/src/2geom/ |
H A D | path.h | 2 * @brief Path - a sequence of contiguous curves 51 class Path; 112 friend class ::Geom::Path; 271 struct ShapeTraits<Path> { 274 typedef Path AffineClosureType; 280 * Path represents a sequence of contiguous curves, also known as a spline. 308 * Internally, Path uses copy-on-write data. This is done for two reasons: first, 311 * Therefore you can return Path and PathVector from functions without worrying 317 * It's not very convenient to create a Path directly. To construct paths more easily, 321 class Path class in namespace:Geom 351 explicit Path(Point const &p = Point()) function in class:Geom::Path 362 Path(Iter first, Iter last, bool closed = false, bool stitch = false) function in class:Geom::Path [all...] |
/inkscape/src/libuemf/ |
H A D | upmf.c | 691 U_DPSEUDO_OBJ *Path = (U_DPSEUDO_OBJ *)calloc(sizeof(U_DPSEUDO_OBJ),1); /* make poTypes and poPoints NULL */ local 693 if(Path){ 694 Path->Elements = Elements; 695 Path->poPoints = U_PMF_SERIAL_set(U_PMF_RAW_OID, List); /* Empty PO to hold points as raw data */ 697 Path->poTypes = U_PMF_SERIAL_set(U_PMF_RAW_OID, List); /* Empty PO to hold types as raw data */ 700 Path->poPoints = U_PO_append(Path->poPoints, (char *)Points, Elements*sizeof(U_PMF_POINTF)); 701 if(Path->poPoints){ 703 Path->poTypes = U_PO_po_append(NULL, tpo, U_PMF_DROP_ELEMENTS); /* remove the leading Elements value*/ 705 if(!Path 749 U_PATH_moveto(U_DPSEUDO_OBJ *Path, U_PMF_POINTF Point, uint8_t Flags) argument 781 U_PATH_lineto(U_DPSEUDO_OBJ *Path, U_PMF_POINTF Point, uint8_t Flags) argument 811 U_PATH_closepath(U_DPSEUDO_OBJ *Path) argument 829 U_PATH_polylineto(U_DPSEUDO_OBJ *Path, uint32_t Elements, const U_PMF_POINTF *Points, uint8_t Flags, uint8_t StartSeg) argument 870 U_PATH_polybezierto(U_DPSEUDO_OBJ *Path, uint32_t Elements, const U_PMF_POINTF *Points, uint8_t Flags, uint8_t StartSeg) argument 910 U_PATH_polygon(U_DPSEUDO_OBJ *Path, uint32_t Elements, const U_PMF_POINTF *Points, uint8_t Flags) argument 974 U_PATH_arcto(U_DPSEUDO_OBJ *Path, U_FLOAT Start, U_FLOAT Sweep, U_FLOAT Rot, U_PMF_RECTF *Rect, uint8_t Flags, int StartSeg) argument 1749 U_PMF_PATH_set2(uint32_t Version, const U_DPSEUDO_OBJ *Path) argument 1776 U_PMF_PATH_set3(uint32_t Version, const U_DPSEUDO_OBJ *Path) argument 2155 U_PMF_BOUNDARYPATHDATA_set(const U_PSEUDO_OBJ *Path) argument 2531 U_PMF_FILLPATHOBJ_set(const U_PSEUDO_OBJ *Path) argument 2754 U_PMF_LINEPATH_set(const U_PSEUDO_OBJ *Path) argument 3314 U_PMF_REGIONNODEPATH_set(const U_PSEUDO_OBJ *Path) argument [all...] |
Completed in 35 milliseconds