Newer
Older
HoloAnatomy / Assets / HoloToolkit-Examples / GazeRuler / Scripts / IPolygonClosable.cs
SURFACEBOOK2\jackwynne on 25 May 2018 481 bytes v1
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.

using UnityEngine;

namespace HoloToolkit.Examples.GazeRuler
{
    /// <summary>
    /// any geometry class inherit this interface should be closeable
    /// </summary>
    public interface IPolygonClosable
    {
        //finish special polygon
        void ClosePolygon(GameObject LinePrefab, GameObject TextPrefab);
    }
}