public override void VisitPath( Path path ) { if( VisitPathDelegate != null ) { VisitPathDelegate( path ); } }
public virtual void VisitPath( Path path ) { }
public override VisualItem Copy() { // // Commands are readonly so we can safely copy references. Path path = new Path( _commands.ToArray() ); path.Pen = Pen; path.Brush = Brush; return path; }