Skip to content
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

Addition of --axesGrid option #2100

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

ArchiePayne
Copy link

@ArchiePayne ArchiePayne commented Mar 28, 2025

Added command line argument --axesGrid which maps to render.cubeAxis.enable.

Support showing the vtkCubeAxesActor within the viewport, matching to bounding box of the model.

Added application layer test for this option.

Issues #7

this->CubeAxesActor->GetLabelTextProperty(1)->SetColor(up);
this->CubeAxesActor->GetTitleTextProperty(1)->SetColor(up);
this->CubeAxesActor->GetLabelTextProperty(2)->SetColor(front);
this->CubeAxesActor->GetTitleTextProperty(2)->SetColor(front);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this color code seems incorrect

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would you mind explaining which part is incorrect?

I matched the axes colours against the grid (shortcut g)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You use the right/up/front vector as colors, resulting in pure red and green in the grid, im not sure this is intended ?

Copy link
Author

@ArchiePayne ArchiePayne Mar 30, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I just took the idea from line 699-700 within vtkF3DRenderer.cxx, where the grid colour is set.

gridMapper->SetAxis1Color(::abs(right[0]), ::abs(right[1]), ::abs(right[2]), 1);

gridMapper->SetAxis2Color(::abs(front[0]), ::abs(front[1]), ::abs(front[2]), 1);

Do you have any suggestions for colours? Perhaps if there are any colours defined anywhere I could take them.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ha right, ill take a look

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Im not sure we want the full cage, what about trying to get something similar to this: #7 ?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have updated the styling to closer match the grid.

Only thing I cannot achieve is the occlusion of the axis that is closest to the camera/obscuring view of the model

Copy link

You are modifying libf3d public API! ⚠️Please update bindings accordingly⚠️!
You can find them in their respective directories: python, java, webassembly.

@mwestphal
Copy link
Member

Looks like your rebase/merge with master did not work as you expected, let me know if you need help with that :)

Comment on lines 64 to 69
"axes_grid": {
"enable": {
"type": "bool",
"default_value": "false"
}
},

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"axes_grid": {
"enable": {
"type": "bool",
"default_value": "false"
}
},
"axes_grid": {
"enable": {
"type": "bool",
"default_value": "false"
}
},

# Conflicts:
#	vtkext/private/module/vtkF3DRenderer.cxx
#	vtkext/private/module/vtkF3DRenderer.h
…alter variable names to match. Match styling of grid closer to suggestion
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants