コード例 #1
0
ファイル: Model.cs プロジェクト: AlphaTangoIndia/excel2earth
 public Model(Location location, Orientation orientation, Scale scale, Link link)
 {
     this.location = location;
     this.orientation = orientation;
     this.scale = scale;
     this.link = link;
 }
コード例 #2
0
ファイル: Model.cs プロジェクト: AlphaTangoIndia/excel2earth
 public Model(altitudeModeEnum altitudeMode, Location location, Orientation orientation, Scale scale, Link link)
 {
     this.altitudeMode = altitudeMode;
     this.location = location;
     this.orientation = orientation;
     this.scale = scale;
     this.link = link;
 }
コード例 #3
0
ファイル: Model.cs プロジェクト: AlphaTangoIndia/excel2earth
 public Model(Location location, Orientation orientation, Scale scale, Link link, ResourceMap resourceMap)
 {
     this.location = location;
     this.orientation = orientation;
     this.scale = scale;
     this.link = link;
     this.resourceMap = resourceMap;
 }