ランタイム
IBoxShape.h
Go to the documentation of this file.
1 #pragma once
2 
5 
6 #include "Mix/Dynamics/IShape.h"
7 
8 namespace Mix{ namespace Dynamics{
9 
13  {
14  protected:
16  virtual ~IBoxShape( void ){}
17 
18  public:
21  virtual const Mix::Vector3& GetHalfExtents( void ) const = 0;
22  };
23 
24 }}
ボックスシェイプインターフェース
Definition: IBoxShape.h:12
3次元浮動小数点ベクトルクラス
Definition: Vector3.h:12
シェイプインターフェースインクルードファイル
virtual const Mix::Vector3 & GetHalfExtents(void) const =0
ボックスのサイズを取得します
virtual ~IBoxShape(void)
デストラクタ
Definition: IBoxShape.h:16
ミックス
Definition: AtomicValue.h:6
シェイプインターフェース
Definition: IShape.h:16