Beispiel #1
0
 public bool Equals(Area other)
 {
     return(name == other.name &&
            priority == other.priority &&
            areaTypeFlags == other.areaTypeFlags &&
            closedPolygon.Equals(other.closedPolygon) &&
            allowIntersectionFlags == other.allowIntersectionFlags &&
            surfaceTypeFlags == other.surfaceTypeFlags &&
            surfaceAttributeFlags == other.surfaceAttributeFlags &&
            levelOffset == other.levelOffset &&
            lower.Equals(other.lower) &&
            upper.Equals(other.upper));
 }
Beispiel #2
0
 public bool Equals(Area other)
 {
     return(name == other.name &&
            priority == other.priority &&
            areaTypeFlags == other.areaTypeFlags &&
            pointList.Equals(other.pointList) &&
            intersectionObjectType == other.intersectionObjectType &&
            allowIntersectionTypes == other.allowIntersectionTypes &&
            surfaceTypeFlags == other.surfaceTypeFlags &&
            surfaceAttributeFlags == other.surfaceAttributeFlags &&
            deprecatedLevelOffset == other.deprecatedLevelOffset &&
            boundingBox3D == other.boundingBox3D);
 }