PointSet

Point set geometry.

Attribute Locations

  • Vertices puts attribute values on the points.

Fields

origin: 3D vector
Origin of the points relative to the project coordinate reference system.
vertices: Array

Array with Vertex type storing the vertex locations.

Add origin and the project origin to get the locations relative to the project coordinate reference system.

Schema

{
  "type": "object",
  "required": [
    "type",
    "vertices"
  ],
  "properties": {
    "origin": {
      "type": "array",
      "items": {
        "type": "number",
        "format": "double"
      },
      "maxItems": 3,
      "minItems": 3
    },
    "type": {
      "type": "string",
      "enum": [
        "PointSet"
      ]
    },
    "vertices": {
      "$ref": "#/definitions/Array"
    }
  }
}