2019-10-20 12:57:48 -04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Toolbox.Library
|
|
|
|
|
{
|
|
|
|
|
public interface IPickable2DObject
|
|
|
|
|
{
|
|
|
|
|
bool IsHit(float X, float Y);
|
|
|
|
|
bool IsSelected { get; set; }
|
|
|
|
|
bool IsHovered { get; set; }
|
|
|
|
|
void PickTranslate(float X, float Y, float Z);
|
2019-11-21 21:46:51 -05:00
|
|
|
|
void PickRotate(float X, float Y, float Z);
|
|
|
|
|
void PickScale(float X, float Y, float Z);
|
2019-10-20 12:57:48 -04:00
|
|
|
|
}
|
|
|
|
|
}
|