* Receives the value of the ODFDOM attribute representation <code>DrawExtrusionOriginAttribute</code> , See {@odf.attribute draw:extrusion-origin}
*
* @return - the <code>Double</code> , the value or <code>null</code>, if the attribute is not set and no default value defined.
*/
public Double getDrawExtrusionOriginAttribute() {
DrawExtrusionOriginAttribute attr = (DrawExtrusionOriginAttribute) getOdfAttribute(OdfDocumentNamespace.DRAW, "extrusion-origin");
if (attr != null) {
return Double.valueOf(attr.doubleValue());
}
return Double.valueOf(DrawExtrusionOriginAttribute.DEFAULT_VALUE);
}