コード例 #1
0
        public void InitFromQAngles(SourceQAngle angles, SourceVector vPosition)
        {
            var t = this;

            MathUtils.AngleMatrix(angles, vPosition, ref t);
            this.m_flMatVal = t.m_flMatVal;
        }
コード例 #2
0
        public SourceQAngle ToQAngle()
        {
            SourceQAngle tmp = new SourceQAngle();

            MathUtils.MatrixAngles(this, ref tmp);
            return(tmp);
        }
コード例 #3
0
 public void InitFromQAngles(SourceQAngle angles)
 {
     InitFromQAngles(angles, SourceVector.Empty);
 }