Example #1
0
 public DocumentWriter(CADDocument document, Stream stream)
 {
     Document = document;
     writer   = new BinaryWriter(stream);
 }
Example #2
0
 public Model(CADDocument doc)
 {
     Document = doc;
     Name     = "<MODEL>";
 }
Example #3
0
 public DocumentReader(CADDocument document, Stream stream)
 {
     Document = document;
     reader   = new BinaryReader(stream);
 }
Example #4
0
 public virtual Task Apply(CADDocument doc, params string[] args)
 {
     return(Task.FromResult(default(object)));
 }