17 lines
373 B
C#
17 lines
373 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using SlimDX;
|
|
|
|
namespace Aiwaz.Contracts
|
|
{
|
|
public interface IPickHull
|
|
{
|
|
bool TryPick(Ray pickRay, Matrix worldMatrix, out float distance);
|
|
|
|
BoundingSphere CalcBoundingSphere(Matrix worldMatrix);
|
|
BoundingBox CalcBoundingBox(Matrix worldMatrix);
|
|
}
|
|
}
|