Ejemplo n.º 1
0
 public PaperToPaperSpace(
     DxfModel model,
     DxfLayout layout,
     GraphicsConfig config,
     Matrix4D postTransform,
     CharTriangulationCache charTriangulationCache)
     : base(model, layout, config, postTransform, charTriangulationCache)
 {
 }
Ejemplo n.º 2
0
 public ModelToPaperSpace(
     DxfModel model,
     DxfLayout layout,
     GraphicsConfig config,
     DxfViewport viewport,
     Matrix4D postTransform,
     CharTriangulationCache charTriangulationCache)
     : base(model, layout, config, postTransform, charTriangulationCache)
 {
     this.dxfViewport_0 = viewport;
 }
Ejemplo n.º 3
0
 public Surface(
     DxfModel model,
     DxfLayout layout,
     GraphicsConfig config,
     Matrix4D transform,
     CharTriangulationCache charTriangulationCache)
     : base(model, layout, config)
 {
     this.class803_0 = new Class803(transform, Matrix3D.Identity, (ILineTypeScaler)Class624.Class626.class626_0);
     this.charTriangulationCache_0 = charTriangulationCache;
 }
Ejemplo n.º 4
0
 public ModelSpace(
     DxfModel model,
     GraphicsConfig config,
     Matrix4D transform,
     CharTriangulationCache charTriangulationCache)
     : base(model, model.ModelLayout, config, transform, charTriangulationCache)
 {
     if (model.Header.CurrentAnnotationScale == null || !model.Header.ModelSpaceAnnotationScalingEnabled)
     {
         return;
     }
     this.AnnotationScaleFactor = model.Header.CurrentAnnotationScale.ScaleFactor;
 }
Ejemplo n.º 5
0
 protected Surface(DrawContext.Surface from)
     : base((DrawContext)from)
 {
     this.class803_0 = (Class803)from.GetTransformer().Clone();
     this.charTriangulationCache_0 = from.charTriangulationCache_0;
 }