Searched defs:el (Results 1 - 2 of 2) sorted by relevance

/inkscape/share/extensions/
H A Dinkweb.js44 InkWeb.el = function (tag, attributes) {
66 InkWeb.getStyle = function (el, att) {
67 // This method is needed because el.style is only working
69 if ( typeof(el) == "string" )
70 el = document.getElementById(el);
71 var style = el.getAttribute("style");
80 InkWeb.setStyle = function (el, att, val) {
81 if ( typeof(el) == "string" )
82 el
[all...]
/inkscape/src/livarot/
H A DShape.cpp2231 double const el = Geom::dot(e, e); // edge length local
2234 if ( el > 0.001 ) {
2236 if ( npr > 0 && npr < el ) {
2238 double ndot = nl * nl / el;
2295 double const el = Geom::L2(e); local
2296 if ( el > 0.001 ) {
2297 Geom::Point const e_unit(e / el);
2299 if ( npr > 0 && npr < el ) {

Completed in 27 milliseconds