-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Aos_2 fixes, by Efi #7841
Merged
Merged
Aos_2 fixes, by Efi #7841
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…perator (operator==) is applicable to the data that extends the curve
sloriot
added
Under Testing
and removed
Batch_2
Second Batch of PRs under testing
labels
Nov 21, 2023
Successfully tested in CGAL-6.0-Ic-116 |
lrineau
reviewed
Nov 29, 2023
Arrangement_on_surface_2/doc/Arrangement_on_surface_2/fig_src/arr_segs.tex
Show resolved
Hide resolved
I only converted them to tikz.
The pictures remain the same.
I did it, because I use the same pictures in the book (CGAL Arrangements
and Their Applications), and I'm currently working on the 2nd edition of
the book.
____ _ ____ _
/_____/_) o /__________ __ //
(____ ( ( ( (_/ (_/-(-'_(/
_/
…On Wed, 29 Nov 2023 at 10:35, Laurent Rineau ***@***.***> wrote:
***@***.**** commented on this pull request.
------------------------------
In
Arrangement_on_surface_2/doc/Arrangement_on_surface_2/fig_src/arr_segs.tex
<#7841 (comment)>:
> +\begin{tikzpicture}[scale=1.0,thick]
+ \node[point] at ( 1, 3) (a) {};
+ \node[point] at ( 2, 4) (b) {};
+ \node[point] at ( 0, 6) (c) {};
+ \node [point,label={[label distance=0pt]90:{$v_1$}}] at ( 5,11) (1) {};
+ \node[point] at ( 9,11) (f) {};
+ \node[point] at (12, 8) (g) {};
+ \node [point,label={[label distance=0pt]-45:{$v_2$}}] at ( 8, 8) (2) {};
+ \node[point] at ( 8, 4) (i) {};
+ \node[point] at ( 6, 4) (j) {};
+ \node[point] at ( 6, 2) (k) {};
+ \node[point] at ( 4, 0) (m) {};
+ \node[point] at ( 9, 0) (n) {};
+ \node[point] at (11, 2) (o) {};
+ \node[point] at (12, 4) (p) {};
+ \node[point] at (12, 0) (q) {};
+ \node[point] at ( 4, 2) (r) {};
+ \node[point] at ( 3, 3) (s) {};
+ \node[point] at ( 5, 3) (t) {};
Don't you need to update as well the png versions of those pictures, so
that they are updated in the CGAL documentation?
—
Reply to this email directly, view it on GitHub
<#7841 (review)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABVBNOBBKUSTANWUGIV4TLDYG3XTLAVCNFSM6AAAAAA6ZRO3X2VHI2DSMVQWIX3LMV43YUDVNRWFEZLROVSXG5CSMV3GSZLXHMYTONJUG4YDIMRTGU>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
I agree the pictures look exactly the same as before. |
lrineau
added
the
rm only: ready for master
For the release team only: that indicates that a PR is about to be merged in 'master'
label
Nov 29, 2023
lrineau
removed
the
rm only: ready for master
For the release team only: that indicates that a PR is about to be merged in 'master'
label
Nov 30, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary of Changes
typedef
withusing
std::chrono
Arr_conic_traits_2
const
qualifier to some interface functionsorientation
parameter in interface functionsGeneral_polygon_set_2
and introduced extractor (from stream)Surface_sweep_2
Are_mergable_2
functor; added code that tests whether the equality operator (operator==
) is supported for the data that extends the curve by theArr_curve_data_traits_2
class templateArr_dcel<Traits,V,H,F>
and set the oldArr_default_dcel<Traits>
to be an alias (using
) ofArr_dcel<Traits>
(whereV
,H
, andF
take default values. This enables the clean extension of Dcel records also forArrangement_with_history_2
(andArrangement_on_surface_with_history_2
), which requires rebindings of the record types.Arrangement_on_surface_with_history_2::Curve_halfedges
public, as we enable iterating over such containers of such types.Release Management