Exemplo n.º 1
0
 public IfcMapConversion(IfcCoordinateReferenceSystemSelect sourceCRS, IfcCoordinateReferenceSystem targetCRS, IfcLengthMeasure eastings, IfcLengthMeasure northings, IfcLengthMeasure orthogonalHeight, IfcReal xAxisAbscissa, IfcReal xAxisOrdinate, IfcReal scale) : base(sourceCRS, targetCRS)
 {
     Eastings         = eastings;
     Northings        = northings;
     OrthogonalHeight = orthogonalHeight;
     XAxisAbscissa    = xAxisAbscissa;
     XAxisOrdinate    = xAxisOrdinate;
     Scale            = scale;
 }
Exemplo n.º 2
0
 public IfcCoordinateOperation(IfcCoordinateReferenceSystemSelect sourceCRS, IfcCoordinateReferenceSystem targetCRS) : base()
 {
     SourceCRS = sourceCRS;
     TargetCRS = targetCRS;
 }
Exemplo n.º 3
0
        }                                      // optional


        /// <summary>
        /// Construct a IfcMapConversion with all required attributes.
        /// </summary>
        public IfcMapConversion(IfcCoordinateReferenceSystemSelect sourceCRS, IfcCoordinateReferenceSystem targetCRS, IfcLengthMeasure eastings, IfcLengthMeasure northings, IfcLengthMeasure orthogonalHeight) : base(sourceCRS, targetCRS)
        {
            Eastings         = eastings;
            Northings        = northings;
            OrthogonalHeight = orthogonalHeight;
        }