Searched defs:dimension (Results 1 - 4 of 4) sorted by relevance

/inkscape/src/util/
H A Dexpression-evaluator.h87 * @param dimension mm has a dimension of 1, mm^2 has a dimension of 2, etc.
92 EvaluatorQuantity(double value = 0, unsigned int dimension = 0);
95 unsigned int dimension; member in class:Inkscape::Util::EvaluatorQuantity
H A Dexpression-evaluator.cpp39 EvaluatorQuantity::EvaluatorQuantity(double value, unsigned int dimension) : argument
41 dimension(dimension)
62 * Evaluates the given arithmetic expression, along with an optional dimension
69 * the order of the dimension (e.g. if the base unit is inches, a dimension
97 if ( result.dimension == 0 && default_unit_factor.dimension != 0 ) {
99 result.dimension = default_unit_factor.dimension;
[all...]
/inkscape/src/libavoid/
H A Dgeomtypes.cpp87 double& Point::operator[](const unsigned int dimension) argument
89 COLA_ASSERT((dimension == 0) || (dimension == 1));
90 return ((dimension == 0) ? x : y);
94 const double& Point::operator[](const unsigned int dimension) const
96 COLA_ASSERT((dimension == 0) || (dimension == 1));
97 return ((dimension == 0) ? x : y);
H A Dorthogonal.cpp66 dimension(dim),
81 dimension(dim),
145 if (lowPt[dimension] != rhsLowPt[dimension])
147 return lowPt[dimension] < rhsLowPt[dimension];
178 size_t dimension; member in class:Avoid::ShiftSegment
187 if (!sBend && !fixed && (minSpaceLimit == lowPoint()[dimension]))
198 if (!sBend && !fixed && (maxSpaceLimit == lowPoint()[dimension]))
422 bool isInsideShape(size_t dimension) argument
1147 size_t dimension = YDIM; // y-dimension local
2079 const size_t dimension; member in class:CmpLineOrder
2126 nudgeOrthogonalRoutes(Router *router, size_t dimension, PtOrderMap& pointOrders, ShiftSegmentList& segmentList) argument
[all...]

Completed in 20 milliseconds