// Add a point as a node with no tag value at height = 10. Points and multipoints can only be added as mass points.
tinEditor.AddGeometry(point, TinSurfaceType.MassPoint, 0, 10);
// Add a z-aware multipoint as a nodes with tag value = 12 at height equal to the z-values of the points. Points and multipoints can only be added as mass points.
tinEditor.AddGeometryZ(multipointZ, TinSurfaceType.MassPoint, 12);
// Add a polyline as hard lines with tag value = 42 and height = 17.
tinEditor.AddGeometry(polyline, TinSurfaceType.HardLine, 42, 17);
// Add a z-aware polygon as an erase polygon with no tag value and height equal to the z-values of the vertices.
tinEditor.AddGeometryZ(polygonZ, TinSurfaceType.HardErase, 0);