Lines Matching refs:shadow
86 with optional drop shadow, from a csv file or from pasted text
285 # Check if a drop shadow should be drawn:
370 # draw drop shadow, if necessary
372 # Create shadow element
373 shadow = inkex.etree.Element(inkex.addNS("rect", "svg"))
376 shadow.set('x', str(width/2 + offset + 1))
377 shadow.set('y', str(height/2 - int(value) + 1))
378 shadow.set("width", str(bar_width))
379 shadow.set("height", str(int(value)))
381 shadow.set('y', str(width/2 + offset + 1))
382 shadow.set('x', str(height/2 + 1))
383 shadow.set("height", str(bar_width))
384 shadow.set("width", str(int(value)))
386 # Set shadow blur (connect to filter object in xml path)
387 shadow.set("style", "filter:url(#filter)")
431 layer.append(shadow)
473 # Create the shadow first (if it should be created):
475 shadow = inkex.etree.Element(inkex.addNS("circle", "svg"))
476 shadow.set('cx', str(width/2))
477 shadow.set('cy', str(height/2))
478 shadow.set('r', str(pie_radius))
479 shadow.set("style", "filter:url(#filter);fill:#000000")
480 layer.append(shadow)
599 shadow = inkex.etree.Element(inkex.addNS("rect", "svg"))
602 shadow.set('x', str(width/2))
603 shadow.set('y', str(height/2 - bar_height/2))
605 shadow.set('x', str(width/2))
606 shadow.set('y', str(height/2))
609 shadow.set("width", str(bar_width))
610 shadow.set("height", str(bar_height/2))
612 shadow.set("width",str(bar_height/2))
613 shadow.set("height", str(bar_width))
614 # Set shadow blur (connect to filter object in xml path)
615 shadow.set("style", "filter:url(#filter)")
616 layer.append(shadow)