Searched defs:computed (Results 1 - 8 of 8) sorted by relevance

/inkscape/src/
H A Dsp-flowregion.h25 std::vector<Shape*> computed; member in class:SPFlowregion
42 Shape *computed; member in class:SPFlowregionExclude
H A Dsp-flowregion.cpp27 static void GetDest(SPObject* child,Shape **computed);
34 for (std::vector<Shape*>::iterator it = this->computed.begin() ; it != this->computed.end() ; ++it) {
100 for (std::vector<Shape*>::iterator it = computed.begin() ; it != computed.end() ; ++it) {
103 computed.clear();
108 computed.push_back(shape);
185 this->computed = NULL;
189 if (this->computed) {
190 delete this->computed;
351 GetDest(SPObject* child,Shape **computed) argument
[all...]
H A Dsp-flowtext.cpp176 this->style->text_align.computed = this->style->text_align.value;
263 bbox->expandBy(0.5 * this->style->stroke_width.computed * scale);
355 sl.value = sl.computed = indent;
390 std::vector<Shape*> const &computed = region->computed; member in class:std
391 for (std::vector<Shape*>::const_iterator it = computed.begin() ; it != computed.end() ; ++it) {
424 if ( c_child && c_child->computed && c_child->computed->hasEdges() ) {
426 shape_temp->Booleen(shape, c_child->computed, bool_op_unio
[all...]
H A Dstyle-internal.h62 * value is taken from the parent. Some properties have "computed" values that depend on:
71 * The "computed" value (if present) is calculated from "value" and some other input.
78 * IFDIFF: Write a property if computed values are different, otherwise return empty string,
85 * Calculate computed values that depend on parent.
90 * operator==: True if computed values are equal. TO DO: DEFINE EXACTLY WHAT THIS MEANS
101 * calculate 'computed' values. Inheritence, of course, requires access to the parent object's
332 // Needs access to 'font-size' and 'font-family' for computed values.
342 computed(0)
349 computed(value),
362 computed
386 float computed; member in class:SPILength
1005 float computed; member in class:SPIFontSize
1105 float computed; member in class:SPIBaselineShift
[all...]
/inkscape/src/svg/
H A Dsvg-angle.h44 float computed; member in class:SVGAngle
49 value = computed = v;
H A Dsvg-angle.cpp30 static bool sp_svg_angle_read_lff(gchar const *str, SVGAngle::Unit &unit, float &val, float &computed);
36 , computed(0)
58 computed = c;
67 computed = c;
76 static bool sp_svg_angle_read_lff(gchar const *str, SVGAngle::Unit &unit, float &val, float &computed) argument
92 computed = v;
101 computed = v;
108 computed = v;
112 computed = Inkscape::Util::Quantity::convert(v, "grad", "°");
116 computed
[all...]
H A Dsvg-length.h46 float computed; member in class:SVGLength
51 value = computed = v;
60 void set(Unit u, float v); // Sets computed value based on u and v.
63 void scale(double scale); // Scales length (value, computed), leaving unit alone.
64 void update(double em, double ex, double scale); // Updates computed value
H A Dsvg-length-test.h14 char const* str; SVGLength::Unit unit; float value; float computed; member in struct:SvgLengthTest::test_t
39 TSM_ASSERT_EQUALS(absolute_tests[i].str , len.computed , absolute_tests[i].computed);
47 TSM_ASSERT_EQUALS(relative_tests[i].str , len.computed , relative_tests[i].computed);
62 TSM_ASSERT_EQUALS(absolute_tests[i].str , len.computed , absolute_tests[i].computed);
70 TSM_ASSERT_EQUALS(relative_tests[i].str , len.computed , relative_tests[i].computed);
77 TSM_ASSERT_EQUALS(fail_tests[i] , len.computed , 45
[all...]

Completed in 214 milliseconds