Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: solvespace/solvespace
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9d1c295495be
Choose a base ref
...
head repository: solvespace/solvespace
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 88879d352eb4
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on May 24, 2019

  1. Show Degrees of Freedom → Show Underconstrained Points

    Clarify the name of the command, as the old name is not strictly
    correct. E.g. consider a vertical line with a midpoint constraint to
    origin has 1 DOF, but 2 highlights are shown. Conversely, a single
    datum point has 2 DOF, but 1 highlight is shown.
    whitequark committed May 24, 2019
    Copy the full SHA
    88879d3 View commit details
Showing with 1 addition and 1 deletion.
  1. +1 −1 src/graphicswin.cpp
2 changes: 1 addition & 1 deletion src/graphicswin.cpp
Original file line number Diff line number Diff line change
@@ -163,7 +163,7 @@ const MenuEntry Menu[] = {
{ 1, N_("Show &Naked Edges"), Command::NAKED_EDGES, C|S|'n', KN, mAna },
{ 1, N_("Show &Center of Mass"), Command::CENTER_OF_MASS, C|S|'c', KN, mAna },
{ 1, NULL, Command::NONE, 0, KN, NULL },
{ 1, N_("Show Degrees of &Freedom"), Command::SHOW_DOF, C|S|'f', KN, mAna },
{ 1, N_("Show &Underconstrained Points"), Command::SHOW_DOF, C|S|'f', KN, mAna },
{ 1, NULL, Command::NONE, 0, KN, NULL },
{ 1, N_("&Trace Point"), Command::TRACE_PT, C|S|'t', KN, mAna },
{ 1, N_("&Stop Tracing..."), Command::STOP_TRACING, C|S|'s', KN, mAna },