Algorithmix.Shred.VisualizeChamfers C# (CSharp) Method

VisualizeChamfers() public method

Plots a trace of the Chamfering
public VisualizeChamfers ( Direction direction, Orientation orientation = Orientation.Regular ) : void
direction Direction Direction to be traced
orientation Orientation Orientation to be traced
return void
        public void VisualizeChamfers(Direction direction, Orientation orientation = Orientation.Regular)
        {
            Visualizer.Plot(Chamfer[Index(direction, orientation)], "Chamfer Trace");
        }

Usage Example

Example #1
0
 public static void ShredFactory(string filepath)
 {
     Shred shred = new Shred(filepath, false);
     shred.VisualizeChamfers(Direction.FromLeft);
     shred.VisualizeChamfers(Direction.FromRight);
     shred.VisualizeChamfers(Direction.FromTop);
     shred.VisualizeChamfers(Direction.FromBottom);
 }
All Usage Examples Of Algorithmix.Shred::VisualizeChamfers