/* (non-Javadoc)
* @see jsynoptic.plugins.circuit.RectangleCircuitComponent#createSymbol()
*/
protected Polygon[] createSymbol(){
Polygon[] res = new Polygon[2];
res[0] = new Polygon(new int[] {3,6,6,8,6,6,3},new int[] {4,4,3,5,7,6,6},7);
res[1] = new Polygon(new int[] {1,1,3,3,2,2,3,3},new int[] {2,8,8,7,7,3,3,2},8);
return res;
}