Пример #1
0
        public bool DropRescuePolyLine(RescuePolyLine polyLineToDrop)
        {
            bool myReturn = DropRescuePolyLine21(nativeNdx
                                                 , (polyLineToDrop == null) ? 0 : polyLineToDrop.nativeNdx);

            return(myReturn);
        }
Пример #2
0
        public bool Equals(RescuePolyLine other)
        {
            bool myReturn = Equals2(nativeNdx
                                    , (other == null) ? 0 : other.nativeNdx);

            return(myReturn);
        }
        public bool RemoveFrom(RescuePolyLine existingObject)
        {
            bool myReturn = RemoveFrom3(nativeNdx
                                        , (existingObject == null) ? 0 : existingObject.nativeNdx);

            return(myReturn);
        }
Пример #4
0
        public RescuePolyLine PolyLineIdentifiedBy(long identifier)
        {
            long returnNdx = PolyLineIdentifiedBy25(nativeNdx
                                                    , identifier);

            if (returnNdx == 0)
            {
                return(null);
            }
            else
            {
                RescuePolyLine myReturn = new RescuePolyLine(returnNdx);
                return(myReturn);
            }
        }
Пример #5
0
        public RescuePolyLine NthRescuePolyLine(long zeroBasedOrdinal)
        {
            long returnNdx = NthRescuePolyLine17(nativeNdx
                                                 , zeroBasedOrdinal);

            if (returnNdx == 0)
            {
                return(null);
            }
            else
            {
                RescuePolyLine myReturn = new RescuePolyLine(returnNdx);
                return(myReturn);
            }
        }
        public RescuePolyLine PolyLine(RescueModel model)
        {
            long returnNdx = PolyLine7(nativeNdx
                                       , (model == null) ? 0 : model.nativeNdx);

            if (returnNdx == 0)
            {
                return(null);
            }
            else
            {
                RescuePolyLine myReturn = new RescuePolyLine(returnNdx);
                return(myReturn);
            }
        }
        public RescuePolyLine NthObject(long ordinal)
        {
            long returnNdx = NthObject4(nativeNdx
                                        , ordinal);

            if (returnNdx == 0)
            {
                return(null);
            }
            else
            {
                RescuePolyLine myReturn = new RescuePolyLine(returnNdx);
                return(myReturn);
            }
        }
        public RescuePolyLine ObjectNamed(string nameIn)
        {
            long returnNdx = ObjectNamed6(nativeNdx
                                          , nameIn);

            if (returnNdx == 0)
            {
                return(null);
            }
            else
            {
                RescuePolyLine myReturn = new RescuePolyLine(returnNdx);
                return(myReturn);
            }
        }
Пример #9
0
        public RescuePolyLine PolyLineBetween(RescueTrimVertex end1,
                                              RescueTrimVertex end2)
        {
            long returnNdx = PolyLineBetween15(nativeNdx
                                               , (end1 == null) ? 0 : end1.nativeNdx
                                               , (end2 == null) ? 0 : end2.nativeNdx);

            if (returnNdx == 0)
            {
                return(null);
            }
            else
            {
                RescuePolyLine myReturn = new RescuePolyLine(returnNdx);
                return(myReturn);
            }
        }
Пример #10
0
        public RescuePolyLine PolyLine(RescueModel model,
                                       bool loadIfNeeded)
        {
            long returnNdx = PolyLine3(nativeNdx
                                       , (model == null) ? 0 : model.nativeNdx
                                       , loadIfNeeded);

            if (returnNdx == 0)
            {
                return(null);
            }
            else
            {
                RescuePolyLine myReturn = new RescuePolyLine(returnNdx);
                return(myReturn);
            }
        }
 public cSetRescuePolyLineNode(RescuePolyLine parentIn)
 {
     nativeNdx = Create_cSetRescuePolyLineNode0((parentIn == null) ? 0 : parentIn.nativeNdx);
 }
 public RescueTrimEdge(RescuePolyLine polyLineIn,
                       int directionIn)
 {
     nativeNdx = Create_RescueTrimEdge1((polyLineIn == null) ? 0 : polyLineIn.nativeNdx,
                                        directionIn);
 }
 public void AddTo(RescuePolyLine newObject)
 {
     AddTo2(nativeNdx
            , (newObject == null) ? 0 : newObject.nativeNdx);
 }