Merge patches from Naohiko Shimizu <nshimizu@ip-arch.jp> for variable
Cell gabarit (for pharosc).
This commit is contained in:
parent
6280a6a00a
commit
544ad6c3e2
|
@ -27,7 +27,7 @@
|
|||
#ifndef __PCONSTANTS_H
|
||||
#define __PCONSTANTS_H
|
||||
|
||||
#define PITCH (5 * SCALE_X)
|
||||
#define ROWHEIGHT 10
|
||||
#define PITCH (MBK_X_GRID * SCALE_X)
|
||||
#define ROWHEIGHT (MBK_Y_SLICE / MBK_Y_GRID)
|
||||
|
||||
#endif /* __PCONSTANTS_H */
|
||||
|
|
|
@ -60,7 +60,7 @@ PCon::Save(struct phfig *physicalfig, const double dx, const double dy) const {
|
|||
, (int)(GetPosX() * PITCH + dx)
|
||||
, (int)(GetPosY() * PITCH + dy)
|
||||
, _orient==NORTH || _orient == SOUTH ? ALU2 : ALU3
|
||||
, (_orient==NORTH || _orient == SOUTH ? 2 : 1) * (PITCH/5));
|
||||
, (_orient==NORTH || _orient == SOUTH ? 2 : 1) * (PITCH/MBK_X_GRID));
|
||||
} else {
|
||||
#if 0
|
||||
addphcon(physicalfig,
|
||||
|
@ -89,7 +89,7 @@ PCon::RingSave(struct phfig *physicalfig, const double dx, const double dy) cons
|
|||
(int)(GetPosX() * PITCH + dx),
|
||||
(int)(GetPosY() * PITCH + dy),
|
||||
ALU2,
|
||||
2 * (PITCH/5));
|
||||
2 * (PITCH/MBK_X_GRID));
|
||||
}
|
||||
|
||||
ostream&
|
||||
|
|
Loading…
Reference in New Issue