Example #1
0
 private void ParseDefineShape4Tag(DefineShape4Tag tag)
 {
     ParseShapeWithStyle(tag.Shapes);
 }
Example #2
0
		private void ParseDefineShape4Tag(DefineShape4Tag tag)
		{
			curSymbol = new Symbol(v.NextId());

			curSymbol.Bounds = ParseRect(tag.EdgeBounds);
			curSymbol.StrokeBounds = ParseRect(tag.ShapeBounds);
			curSymbol.Id = tag.ShapeId;
			v.Definitions.Add(curSymbol.Id, curSymbol);

			ParseShapeWithStyle(tag.Shapes);
		}