Searched refs:xtilt (Results 1 - 4 of 4) sorted by relevance

/inkscape/src/ui/tools/
H A Ddynamic-base.h87 gdouble xtilt; member in class:Inkscape::UI::Tools::DynamicBase
H A Dcalligraphic-tool.cpp234 if (gdk_event_get_axis (event, GDK_AXIS_XTILT, &this->xtilt)) {
235 this->xtilt = CLAMP (this->xtilt, DDC_MIN_TILT, DDC_MAX_TILT);
237 this->xtilt = DDC_DEFAULT_TILT;
282 gdouble length = std::sqrt(this->xtilt*this->xtilt + this->ytilt*this->ytilt);;
285 Geom::Point ang1 = Geom::Point(this->ytilt/length, this->xtilt/length);
H A Deraser-tool.cpp184 if (gdk_event_get_axis (event, GDK_AXIS_XTILT, &this->xtilt))
185 this->xtilt = CLAMP (this->xtilt, ERC_MIN_TILT, ERC_MAX_TILT);
187 this->xtilt = ERC_DEFAULT_TILT;
230 gdouble length = std::sqrt(this->xtilt*this->xtilt + this->ytilt*this->ytilt);;
233 Geom::Point ang1 = Geom::Point(this->ytilt/length, this->xtilt/length);
H A Ddynamic-base.cpp47 , xtilt(0)

Completed in 86 milliseconds