27 lines
843 B
C#
27 lines
843 B
C#
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
|
|
}
|
|
}
|