mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: face::connected() method
- return true if two faces share a common vertex. Same idea as the existing edge::connected() method (previously spelled 'connects()')
This commit is contained in:
committed by
Andrew Heather
parent
d3e285b48b
commit
e4139898d2
@ -67,7 +67,7 @@ int main(int argc, char *argv[])
|
||||
Info<<"collapse? -> " << e4.collapse() << endl;
|
||||
printInfo(e4);
|
||||
|
||||
Info<< e3 << " connects " << e2 << " => " << e2.connects(e3) << endl;
|
||||
Info<< e3 << " connects " << e2 << " => " << e2.connected(e3) << endl;
|
||||
|
||||
labelPair labels(e3);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user