AR Design
UBC EML collab with UBC SALA - visualizing IoT data in AR
IGeometry.cs
Go to the documentation of this file.
1 // Copyright (c) Microsoft Corporation. All rights reserved.
2 // Licensed under the MIT License. See LICENSE in the project root for license information.
3 
4 using UnityEngine;
5 using System.Collections;
6 
7 namespace HoloToolkit.Examples.GazeRuler
8 {
12  public interface IGeometry
13  {
14  void AddPoint(GameObject LinePrefab, GameObject PointPrefab, GameObject TextPrefab);
15 
16  void Delete();
17 
18  void Clear();
19 
20  void Reset();
21  }
22 }
interface for geometry class
Definition: IGeometry.cs:12