コード例 #1
0
ファイル: cell.cs プロジェクト: philstopford/DesignLibs_GPL
 private void pAddCellrefArray(GCCell c, GeoLibPoint pos1, GeoLibPoint pos2, int anzx, int anzy)
 {
     GCElement e = new GCCellRefArray(c, pos1, pos2, anzx, anzy);
     pAddElement(e);
 }
コード例 #2
0
ファイル: cell.cs プロジェクト: philstopford/DesignLibs_GPL
 private void pAddCellrefArray(GCCell c, GeoLibPoint[] array, int anzx, int anzy)
 {
     GCElement e = new GCCellRefArray(c, array, anzx, anzy);
     pAddElement(e);
 }