Beispiel #1
0
 public ItemLocationDirect(IItemLocation from)
 {
     CopyFrom(from);
 }
 public ItemLocationDirectAutoSize(IItemLocation from)
 {
     CopyFrom(from);
 }
Beispiel #3
0
		public ItemLocationDirect(IItemLocation from)
		{
			CopyFrom(from);
		}
		public ItemLocationDirectAspectPreserving(IItemLocation from)
		{
			CopyFrom(from);
		}
		public ItemLocationDirectAutoSize(IItemLocation from)
		{
			CopyFrom(from);
		}
 public ItemLocationDirectAspectPreserving(IItemLocation from)
 {
     CopyFrom(from);
 }
Beispiel #7
0
		/// <summary>
		/// Creates a layer at the provided <paramref name="location"/>.
		/// </summary>
		/// <param name="parentLayer">The parent layer of the newly created layer.</param>
		/// <param name="location">The position of the layer on the printable area in points (1/72 inch).</param>
		/// <param name="coordinateSystem">The coordinate system to use for the layer.</param>
		public XYZPlotLayer(HostLayer parentLayer, IItemLocation location, G3DCoordinateSystem coordinateSystem)
			: base(parentLayer, location)
		{
			this.CoordinateSystem = coordinateSystem;
			this.AxisStyles = new AxisStyleCollection();
			this.Scales = new ScaleCollection(3);
			this.GridPlanes = new GridPlaneCollection();
			this.GridPlanes.Add(new GridPlane(CSPlaneID.Front));
			this.PlotItems = new PlotItemCollection(this);
		}
Beispiel #8
0
		/// <summary>
		/// Creates a layer at the designated <paramref name="location"/>
		/// </summary>
		/// <param name="parentLayer">The parent layer of the constructed layer.</param>
		/// <param name="location">The location of the constructed layer.</param>
		public XYZPlotLayer(HostLayer parentLayer, IItemLocation location)
			: this(parentLayer, location, new CS.G3DCartesicCoordinateSystem())
		{
		}