This repository has been archived on 2023-01-27. You can view files and clone it, but cannot push or open issues or pull requests.
cad/ref/xcad/docs/_src/CustomFeature/MacroFeatureSelectionParams.cs
2022-10-15 19:16:08 +02:00

18 lines
467 B
C#

using System.Collections.Generic;
using Xarial.XCad.Geometry;
namespace Xarial.XCad.Documentation
{
public class MacroFeatureSelectionParams
{
//selection parameter of any entity (e.g. face, edge, feature etc.)
public IXSelObject AnyEntity { get; set; }
//selection parameter of body
public IXBody Body { get; set; }
//selection parameter of array of faces
public List<IXFace> Faces { get; set; }
}
}