QueryVector3() public abstract method

public abstract QueryVector3 ( ) : NFVector3
return NFVector3
示例#1
0
        public override NFVector3 QueryPropertyVector3(string strPropertyName)
        {
            NFIProperty property = mPropertyManager.GetProperty(strPropertyName);

            if (null != property)
            {
                return(property.QueryVector3());
            }

            return(NFDataList.NULL_VECTOR3);
        }