예제 #1
0
파일: DrawContext.cs 프로젝트: 15831944/WW
 public PaperToPaperSpace(
     DxfModel model,
     DxfLayout layout,
     GraphicsConfig config,
     Matrix4D postTransform,
     CharTriangulationCache charTriangulationCache)
     : base(model, layout, config, postTransform, charTriangulationCache)
 {
 }
예제 #2
0
파일: DrawContext.cs 프로젝트: 15831944/WW
 public ModelToPaperSpace(
     DxfModel model,
     DxfLayout layout,
     GraphicsConfig config,
     DxfViewport viewport,
     Matrix4D postTransform,
     CharTriangulationCache charTriangulationCache)
     : base(model, layout, config, postTransform, charTriangulationCache)
 {
     this.dxfViewport_0 = viewport;
 }
예제 #3
0
파일: DrawContext.cs 프로젝트: 15831944/WW
 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;
 }
예제 #4
0
파일: DrawContext.cs 프로젝트: 15831944/WW
 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;
 }
예제 #5
0
파일: DrawContext.cs 프로젝트: 15831944/WW
 protected Surface(DrawContext.Surface from)
     : base((DrawContext)from)
 {
     this.class803_0 = (Class803)from.GetTransformer().Clone();
     this.charTriangulationCache_0 = from.charTriangulationCache_0;
 }