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.
|
// Return the physical X/Y coordinates of the pin.
|
||||||
virtual void location(const Pin *pin,
|
virtual void location(const Pin *pin,
|
||||||
// Return values.
|
// Return values.
|
||||||
double x,
|
double &x,
|
||||||
double y,
|
double &y,
|
||||||
bool exists) const;
|
bool &exists) const;
|
||||||
|
|
||||||
int pinCount();
|
int pinCount();
|
||||||
int pinCount(Instance *inst);
|
int pinCount(Instance *inst);
|
||||||
|
|
|
||||||
|
|
@ -938,9 +938,9 @@ Network::findInstPinsMatching(const Instance *instance,
|
||||||
void
|
void
|
||||||
Network::location(const Pin *pin,
|
Network::location(const Pin *pin,
|
||||||
// Return values.
|
// Return values.
|
||||||
double x,
|
double &x,
|
||||||
double y,
|
double &y,
|
||||||
bool exists) const
|
bool &exists) const
|
||||||
{
|
{
|
||||||
x = y = 0.0;
|
x = y = 0.0;
|
||||||
exists = false;
|
exists = false;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue