mirror of
https://github.com/eliasstepanik/OSCADSharpDotnet7.git
synced 2026-01-11 21:48:34 +00:00
19 lines
425 B
C#
19 lines
425 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace OSCADSharp
|
|
{
|
|
/// <summary>
|
|
/// Creates an object that's the convex hull of child objects
|
|
/// </summary>
|
|
internal class HulledObject : MultiStatementObject
|
|
{
|
|
public HulledObject(IEnumerable<OSCADObject> children) : base("hull()", children)
|
|
{
|
|
}
|
|
}
|
|
}
|