示例#1
0
        public IWhiskerPoint CreateWhiskerPoint(IWhisker parent)
        {
            WhiskerPoint whiskerPoint = new WhiskerPoint();
            whiskerPoint.Parent = parent;
            whiskerPoint.PointId = PointId;
            whiskerPoint.XRatio = XRatio;
            whiskerPoint.YRatio = YRatio;
            whiskerPoint.DataLoadComplete();

            return whiskerPoint;
        }
示例#2
0
        public IWhiskerPoint Clone()
        {
            WhiskerPoint whiskerPoint = new WhiskerPoint();

            whiskerPoint.PointId = PointId;
            whiskerPoint.Parent  = Parent;
            whiskerPoint.XRatio  = XRatio;
            whiskerPoint.YRatio  = YRatio;

            return(whiskerPoint);
        }
示例#3
0
        public IWhiskerPoint CreateWhiskerPoint(IWhisker parent)
        {
            WhiskerPoint whiskerPoint = new WhiskerPoint();

            whiskerPoint.Parent  = parent;
            whiskerPoint.PointId = PointId;
            whiskerPoint.XRatio  = XRatio;
            whiskerPoint.YRatio  = YRatio;
            whiskerPoint.DataLoadComplete();

            return(whiskerPoint);
        }
示例#4
0
        public IWhiskerPoint Clone()
        {
            WhiskerPoint whiskerPoint = new WhiskerPoint();

            whiskerPoint.PointId = PointId;
            whiskerPoint.Parent = Parent;
            whiskerPoint.XRatio = XRatio;
            whiskerPoint.YRatio = YRatio;

            return whiskerPoint;
        }