Ejemplo n.º 1
0
        public override void Set(double x, double y)
        {
            if (x != mX || y != mY)
            {
                mX          = x;
                mY          = y;
                mVertexCode = TriangulationPoint.CreateVertexCodeWithPrecision8(mX, mY);
//				mVertexCode = TriangulationPoint.CreateVertexCode (mX, mY, kVertexCodeDefaultPrecision);
            }
        }
Ejemplo n.º 2
0
        public TriangulationPoint(double x, double y, float z, double precision)
            : base(x, y, z)
        {
            mVertexCode = TriangulationPoint.CreateVertexCodeWithPrecision8(x, y);
//			mVertexCode = TriangulationPoint.CreateVertexCode (x, y, precision);
        }