forked from FreeCAD/FreeCAD
-
Notifications
You must be signed in to change notification settings - Fork 0
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
Test PR #7
Open
0penBrain
wants to merge
1,577
commits into
master
Choose a base branch
from
FCCI
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
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
Deprecated. Replaced by 3rd party addon 'Render'.
…texts-in-importDXF.py Draft: use convert_draft_texts in importDXF.py
GUI: Transform sr-CS to sr_Latn in menu entry
========================================== fixes FreeCAD#6174 Problem ======= The popularity contest heuristic was designed to assume that removing one solver constraint from a redundant group would potentially satisfy it. This means that for sketcher constraints comprising several solver constraints, the sketcher constraint would never be notified as redundant, but always partially redundant (where the case may be that it is redundant or that it is partially redundant). This happens because after removing one solver constraint, it may happen: (a) that no other solver constraint corresponding to the sketcher constraint remains in the redundant group (so it is indeed partially redundant) (b) that at least one other solver constraint corresponding to the sketcher constraint remains in the redundant group (so if all solver constraints remain in the redundant group, the sketcher constraint is actually redundant). This happens because solver constraints of a single sketcher constraint are orthogonal and consequently, a conflict (or redundancy) emanating from removing one of them cannot actually satisfy the group, as it has no effect on the other. Solution ======== When popularity constraint decides on one solver constraint, remove any other solver constraint of the same tag (i.e. same sketcher constraint) that is present in the conflict group (case b). This does not affect case a, because the solver constraint that is not redundant is not present in the conflict (redundancy) group.
Signed-off-by: Przemo Firszt <przemo@firszt.eu>
PATH: Change GUI Op Base Geometry Import button to support multiple bases
…election::selectionRole
Also tweaked code formatting Closes FreeCAD#9406
Also fixed incorrect typos in previous commit
In the icons arcs are shown as CW when in fact they are CCW
Signed-off-by: Przemo Firszt <przemo@firszt.eu>
Replace glPolygonMode() and GL_POLYGON with GL_LINE_LOOP Replace glDepthRange() with glPolygonOffset() Some cleanup in configuring openGL
FEM: Adjust translation context for SolverCalculiX
for easier selection and visualization
Close FreeCAD#9407 Co-authored-by: Chris Hennes <chennes@pioneerlibrarysystem.org>
[COPR] Remove Raytracing
Draft: Add l10n context for ambiguous string
…ssues Addon Manager: Translation issues
Begin translating user-visible exception strings
0penBrain
force-pushed
the
FCCI
branch
6 times, most recently
from
May 28, 2023 09:40
7c4ec6f
to
3b59bd1
Compare
0penBrain
force-pushed
the
FCCI
branch
3 times, most recently
from
May 28, 2023 11:38
7951ad7
to
13ffca9
Compare
This change is needed for ease further processing of changed file list in Prepare step
0penBrain
force-pushed
the
FCCI
branch
10 times, most recently
from
May 29, 2023 10:09
e2c2416
to
b6c198b
Compare
This aims at circumventing limit of 300 changed files returned by GH API
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.
Test PR