Exemple #1
0
 /// <summary>
 /// Adds the specified extents.
 /// </summary>
 /// <param name="extents">The extents.</param>
 /// <param name="zCoordinate">The z-coordinate of the extents object.</param>
 public abstract void Add(Extents <U> extents, double zCoordinate);
 /// <summary>
 /// Initializes a new instance of the <see cref="PointExtents3D"/> class.
 /// </summary>
 /// <param name="extents">The extents.</param>
 /// <param name="zCoordinate">The z coordinate.</param>
 public PointExtents3D(Extents <CartesianCoordinate> extents, double zCoordinate) : base(extents, zCoordinate)
 {
 }
Exemple #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Extents3D"/> class.
 /// </summary>
 /// <param name="extents">The extents.</param>
 /// <param name="offsetZ">The vertical to project the extents object from.</param>
 protected Extents3D(Extents <U> extents, double offsetZ)
 {
     initialize();
     Add(extents, offsetZ);
 }
Exemple #4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PointExtents"/> class for cloning.
 /// </summary>
 /// <param name="extents">The extents.</param>
 protected PointExtents(Extents <CartesianCoordinate> extents) : base(extents)
 {
 }
Exemple #5
0
 public PointExtents3D(Extents <Point> extents, double zCoordinate) : base(extents, zCoordinate)
 {
 }
Exemple #6
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Extents3D"/> class.
 /// </summary>
 /// <param name="extents">The extents.</param>
 /// <param name="offsetZ">The vertical to project the extents object from.</param>
 public Extents3D(Extents extents, double offsetZ)
 {
     initialize();
     Add(extents, offsetZ);
 }
Exemple #7
0
 public PointExtents(Extents <Point> extents) : base(extents)
 {
 }