Esempio n. 1
0
 public void EdgeSpans_PlotSingle(
     [ArgDescription("Edge spans file."), ArgRequired, ArgExistingFile] string edgeSpansFilePath,
     [ArgDescription("The index of the edge span to visualize.  If negative, a random one will be chosen."), ArgDefaultValue(-1)] int index,
     [ArgDescription("Resolution of the image (it will be squared)"), ArgDefaultValue(1024)] int sideResolution)
 {
     EdgeSpanVisualizer.RenderSingleSpan(edgeSpansFilePath, index, sideResolution);
 }