コード例 #1
0
ファイル: GfRay.cs プロジェクト: feniksa/usd-unity-sdk
        public static bool operator==(GfRay lhs, GfRay rhs)
        {
            // The Swig binding glue will re-enter this operator comparing to null, so
            // that case must be handled explicitly to avoid an infinite loop. This is still
            // not great, since it crosses the C#/C++ barrier twice. A better approache might
            // be to return a simple value from C++ that can be compared in C#.
            bool lnull = lhs as object == null;
            bool rnull = rhs as object == null;

            return((lnull == rnull) && ((lnull && rnull) || GfRay.Equals(lhs, rhs)));
        }
コード例 #2
0
ファイル: GfRay.cs プロジェクト: feniksa/usd-unity-sdk
 override public bool Equals(object rhs)
 {
     return(GfRay.Equals(this, rhs as GfRay));
 }