Cesium for Unity 1.23.0
Loading...
Searching...
No Matches
CesiumGeoJsonLineString.cs
Go to the documentation of this file.
1using System;
2using Unity.Mathematics;
3
4namespace CesiumForUnity
5{
14 public class CesiumGeoJsonLineString
15 {
19 public double3[] points { get; internal set; }
20
25 {
26 points = Array.Empty<double3>();
27 }
28 }
29}
Represents a LineString in a GeoJSON document.
double3[] points
Gets the points in longitude, latitude, height that make up this line string.