Network::location(pin)
This commit is contained in:
parent
ccff78468b
commit
2cab7b18e5
|
|
@ -326,9 +326,9 @@ public:
|
|||
// Return the physical X/Y coordinates of the pin.
|
||||
virtual void location(const Pin *pin,
|
||||
// Return values.
|
||||
double x,
|
||||
double y,
|
||||
bool exists) const;
|
||||
double &x,
|
||||
double &y,
|
||||
bool &exists) const;
|
||||
|
||||
int pinCount();
|
||||
int pinCount(Instance *inst);
|
||||
|
|
|
|||
|
|
@ -938,9 +938,9 @@ Network::findInstPinsMatching(const Instance *instance,
|
|||
void
|
||||
Network::location(const Pin *pin,
|
||||
// Return values.
|
||||
double x,
|
||||
double y,
|
||||
bool exists) const
|
||||
double &x,
|
||||
double &y,
|
||||
bool &exists) const
|
||||
{
|
||||
x = y = 0.0;
|
||||
exists = false;
|
||||
|
|
|
|||
Loading…
Reference in New Issue