mirror of https://github.com/CGAL/cgal
Added a convenience function
This commit is contained in:
parent
1df99adf3f
commit
d25ed74532
|
|
@ -470,6 +470,9 @@ public:
|
||||||
Point point(const Vertex_handle &v) const {
|
Point point(const Vertex_handle &v) const {
|
||||||
return point(periodic_point(v));
|
return point(periodic_point(v));
|
||||||
}
|
}
|
||||||
|
Point point(const Face_handle &fh, int i) const {
|
||||||
|
return point(periodic_point(fh, i));
|
||||||
|
}
|
||||||
/// Converts the Periodic_segment ps to a Segment in \f$R^2\f$.
|
/// Converts the Periodic_segment ps to a Segment in \f$R^2\f$.
|
||||||
/// NGHK: Implemented
|
/// NGHK: Implemented
|
||||||
Segment segment(const Periodic_segment &ps) const {
|
Segment segment(const Periodic_segment &ps) const {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue