migrate doc to wwwroot.
This commit is contained in:
@@ -22,10 +22,11 @@ using System.IO;
|
||||
|
||||
namespace Sample.Machining
|
||||
{
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// This example demonstrates how to create a complete machining project from scratch using HiAPI. It shows the step-by-step process of building all necessary components, including defining custom milling cutters with specific parameters (helix angle, rake angle, etc.), configuring tool holders, setting up a machining tool house with multiple tools, defining the fixture and workpiece geometry, and configuring the machine chain. The sample also demonstrates how to set workpiece material properties and generate the final project XML file. This example is particularly valuable for developers who need to programmatically create complete machining projects without using the HiNC GUI.
|
||||
/// Demonstrates how to create and configure a <see cref="MachiningProject"/> programmatically.
|
||||
/// This sample shows how to set up <see cref="MillingCutter"/>, <see cref="CylindroidHolder"/>,
|
||||
/// <see cref="StickMachiningTool"/>, <see cref="Fixture"/>, <see cref="Workpiece"/>,
|
||||
/// and save the project configuration to a file.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// ### Source Code
|
||||
|
||||
@@ -8,7 +8,10 @@ using Hi.MongoUtils;
|
||||
namespace Sample.Machining
|
||||
{
|
||||
/// <summary>
|
||||
/// This sample demonstrates how to work with an existing machining project file and execute NC programs. It covers the entire workflow from project loading to executing machining operations, including setting up event handlers for monitoring machining progress and error conditions. The example shows how to configure runtime parameters like collision detection and material removal rate (MRR) monitoring, execute NC files, and properly clean up resources after machining is complete. It's particularly useful for applications that need to automate the execution of machining operations and handle events during the simulation process.
|
||||
/// Demonstrates how to load and use an existing <see cref="MachiningProject"/> instance.
|
||||
/// This sample shows how to set up event handlers for messages and machining step objects,
|
||||
/// execute NC files, and properly manage project resources using
|
||||
/// <see cref="IDisposable.Dispose"/>.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// ### Source Code
|
||||
|
||||
Reference in New Issue
Block a user