コード例 #1
0
ファイル: WhiskerPointXml.cs プロジェクト: BrettHewitt/MWA
        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
ファイル: WhiskerPoint.cs プロジェクト: BrettHewitt/MWA
        public IWhiskerPoint Clone()
        {
            WhiskerPoint whiskerPoint = new WhiskerPoint();

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

            return whiskerPoint;
        }