Files
wg_cpso/CaeMesh/Geometry/GeomVertex.cs

27 lines
843 B
C#
Raw 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 GeomVertex : GeometryItem
{
// Variables
// Properties
// Constructors
public GeomVertex(int id, int[] labels)
: base (id, labels)
{
}
// Methods
}
}