Class CSVToPoints
Assembly: Assembly-CSharp.dll
Syntax
public static class CSVToPoints
Methods
LoadFromCSV(string, CoordSystem)
Import a series of 3D points from a CSV file. This method assumes that
you have an "x", a "y", and a "z" as the header/first row of the CSV.
Declaration
public static List<Vector3> LoadFromCSV(string csvFilePath, CoordConversion.CoordSystem coordSystem)
Parameters
| Type |
Name |
Description |
| string |
csvFilePath |
|
| CoordConversion.CoordSystem |
coordSystem |
|
Returns
| Type |
Description |
| List<Vector3> |
|