コード例 #1
0
ファイル: BSConstraint.cs プロジェクト: p07r0457/opensim
        public virtual bool SetAngularLimits(Vector3 low, Vector3 high)
        {
            bool ret = false;

            if (m_enabled)
            {
                ret = BulletSimAPI.SetAngularLimits2(m_constraint.ptr, low, high);
            }
            return(ret);
        }