org.apache.batik.extension.svg.BatikRegularPolygonElementBridge Maven / Gradle / Ivy
/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package org.apache.batik.extension.svg;
import java.awt.geom.GeneralPath;
import org.apache.batik.bridge.Bridge;
import org.apache.batik.bridge.BridgeContext;
import org.apache.batik.bridge.BridgeException;
import org.apache.batik.bridge.SVGDecoratedShapeElementBridge;
import org.apache.batik.bridge.SVGUtilities;
import org.apache.batik.bridge.UnitProcessor;
import org.apache.batik.gvt.ShapeNode;
import org.w3c.dom.Element;
/**
* Bridge class for a regular polygon element.
*
* @author Thomas Deweese
* @version $Id: BatikRegularPolygonElementBridge.java 501922 2007-01-31 17:47:47Z dvholten $
*/
public class BatikRegularPolygonElementBridge
extends SVGDecoratedShapeElementBridge
implements BatikExtConstants {
/**
* Constructs a new bridge for the <rect> element.
*/
public BatikRegularPolygonElementBridge() { /* nothing */ }
/**
* Returns the SVG namespace URI.
*/
public String getNamespaceURI() {
return BATIK_EXT_NAMESPACE_URI;
}
/**
* Returns 'rect'.
*/
public String getLocalName() {
return BATIK_EXT_REGULAR_POLYGON_TAG;
}
/**
* Returns a new instance of this bridge.
*/
public Bridge getInstance() {
return new BatikRegularPolygonElementBridge();
}
/**
* Constructs a regular polygone according to the specified parameters.
*
* @param ctx the bridge context to use
* @param e the element that describes a rect element
* @param shapeNode the shape node to initialize
*/
protected void buildShape(BridgeContext ctx,
Element e,
ShapeNode shapeNode) {
UnitProcessor.Context uctx = UnitProcessor.createContext(ctx, e);
String s;
// 'cx' attribute - default is 0
s = e.getAttributeNS(null, SVG_CX_ATTRIBUTE);
float cx = 0;
if (s.length() != 0) {
cx = UnitProcessor.svgHorizontalCoordinateToUserSpace
(s, SVG_CX_ATTRIBUTE, uctx);
}
// 'cy' attribute - default is 0
s = e.getAttributeNS(null, SVG_CY_ATTRIBUTE);
float cy = 0;
if (s.length() != 0) {
cy = UnitProcessor.svgVerticalCoordinateToUserSpace
(s, SVG_CY_ATTRIBUTE, uctx);
}
// 'r' attribute - required
s = e.getAttributeNS(null, SVG_R_ATTRIBUTE);
float r;
if (s.length() != 0) {
r = UnitProcessor.svgOtherLengthToUserSpace
(s, SVG_R_ATTRIBUTE, uctx);
} else {
throw new BridgeException(ctx, e, ERR_ATTRIBUTE_MISSING,
new Object[] {SVG_R_ATTRIBUTE, s});
}
// 'sides' attribute - default is 3
int sides = convertSides(e, BATIK_EXT_SIDES_ATTRIBUTE, 3, ctx);
GeneralPath gp = new GeneralPath();
for (int i=0; i