using System;
using System.Collections.Generic;
namespace poly_projector
{
class Program
{
static int Main(string[] args)
{
string aKey = MTKLicenseKey.Value();
if (!LicenseManager.Activate(aKey))
{
Console.WriteLine("Failed to activate Manufacturing Toolkit license.");
return 1;
}
if (args.Length != 2)
{
Console.WriteLine("Usage: poly_projector <input_file> <output_folder>, where:");
Console.WriteLine(" <input_file> is a name of the file to be read");
Console.WriteLine(" <output_folder> is a folder to save projections to (must end with '/' or '\\\\')");
return 1;
}
string anOutFolder = args[1];
if (!aReader.
Read(aSource, aModel))
{
Console.WriteLine("Failed to read the file " + args[0]);
return 1;
}
Console.WriteLine(
"Model: " + aModel.
Name());
Console.WriteLine("");
{
Console.WriteLine("Failed to write X projection.");
return 1;
}
{
Console.WriteLine("Failed to write Y projection.");
return 1;
}
{
Console.WriteLine("Failed to write Z projection.");
return 1;
}
Console.WriteLine("Output written:");
Console.WriteLine(" " + anOutX);
Console.WriteLine(" " + anOutY);
Console.WriteLine(" " + anOutZ);
return 0;
}
static void PrintProjectionInfo(
Part thePart,
{
Console.WriteLine(
"Part [" + thePart.
Name() +
"], projection " + theDirectionName +
":");
Console.WriteLine(
" area = " + theProjection.
Area() +
" mm");
Console.WriteLine(
" outer perimeter = " + theProjection.
OuterPerimeter() +
" mm");
Console.WriteLine("");
}
{
public ProjectionComputer(
Direction theDirection,
{
myDirection = theDirection;
myDirectionName = theDirectionName;
}
{
{
aPart.AddBody(aMeshBody);
}
return aWriter.
Write(anOutModel, theFileName);
}
public override void Apply(
Part thePart)
{
PrintProjectionInfo(thePart, myDirectionName, aProjection);
myPartProjections.Add(aProjection);
}
private List<Projector_Projection> myPartProjections = new List<Projector_Projection>();
}
static bool ComputeProjection(
Model theModel,
{
ProjectionComputer aComputer = new ProjectionComputer(theDirection, theDirectionName);
return aComputer.SaveProjection(theOutFileName);
}
}
}
Defines a 3D Direction.
Definition Direction.hxx:32
Defines a body that represents a polygonal mesh (faceted or tessellated).
Definition MeshBody.hxx:30
UTF16String Name() const
Returns a name.
Definition ModelElement.cxx:54
Element visitor with empty implementation.
Definition ModelElementVisitor.hxx:63
Provides MTK data model.
Definition Model.hxx:39
void AddRoot(const ModelElement &theElement)
Adds a root element to the model.
Definition Model.cxx:219
UTF16String Name() const
Returns a model name.
Definition Model.cxx:256
void Accept(ModelElementVisitor &theVisitor) const
Accepts a visitor.
Definition Model.cxx:276
Reads supported formats, see Import section.
Definition ModelReader.hxx:32
bool Read(const UTF16String &theFilePath, ModelData::Model &theModel)
Reads the file at the specified path into the specified model.
Definition ModelReader.cxx:288
Writes supported formats, see Import and Export section.
Definition ModelWriter.hxx:32
bool Write(const ModelData::Model &theModel, const UTF16String &theFilePath)
Writes the specified model to the file at the specified path.
Definition ModelWriter.cxx:121
Defines a leaf node in the scene graph hierarchy.
Definition Part.hxx:32
The poly projection tool.
Definition Projector_PolyProjector.hxx:43
Provides a computed projection results.
Definition Projector_Projection.hxx:64
double Area() const
Returns the total area of the projection.
Definition Projector_Projection.cxx:127
const ModelData::IndexedTriangleSet & Mesh() const
Returns the complete mesh representation of the projection.
Definition Projector_Projection.cxx:164
double OuterPerimeter() const
Returns the sum of regions' outer perimeter.
Definition Projector_Projection.cxx:142
Defines a Unicode (UTF-16) string wrapping a standard string.
Definition UTF16String.hxx:29
Contains classes, types, enums, and functions related to geometric entities.
Defines classes, types, enums, and functions related to topological entities and scene graph elements...
Contains classes, namespaces, enums, types, and global functions related to Manufacturing Toolkit.
Definition LicenseManager_LicenseError.hxx:29