Files
wg_cpso/CaeMesh/Geometry/GeomSurface.cs

27 lines
845 B
C#
Raw Permalink Normal View History

2026-03-25 18:20:24 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CaeMesh
{
public class GeomSurface : GeometryItem
{
// Variables
// Properties
// Constructors
public GeomSurface(int id, int[] labels)
: base (id, labels)
{
}
// Methods
}
}