-
Notifications
You must be signed in to change notification settings - Fork 55
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
Stream shows the inside of sketch after extrude #2998
Comments
This was actually solved when Lee added "zoom_to_fit" on extrude, but zoom to fit was being weird and making the whole scene look empty, because the user ending up inside the object is better than loosing the scene entirely I re-introduced this bug as a compromise with #3276 And have raised this https://github.com/KittyCAD/engine/issues/2417 in the engine. |
So we're waiting on engine to fix? |
Just double checking, that part of the problem with our Reset Camera button and function isn't that we update the camera's position to a fixed number before calling await this.engineCommandManager.sendSceneCommand({
type: 'modeling_cmd_req',
cmd_id: uuidv4(),
cmd: {
type: 'default_camera_look_at',
center: this.target,
vantage: {
x: this.target.x,
y: this.target.y - 128,
z: this.target.z + 64,
},
up: { x: 0, y: 0, z: 1 },
},
}) are the |
Reset camera is fine, zoom to fit has issues outside of the reset camera gizmo button. for example #3217 zoom to fit does not change the camera's orientation only it position, so setting the camera to First just has the effect of putting the camera back to where it normally start with, so it's like resetting the scene. |
Engine has a PR up btw. |
looks like this was closed in engine, we good here? |
Yes. |
🐛
Steps to reproduce:
Expected: To view the extruded sketch at a reasonable scale
Actual: The view is the inside of the extruded sketch
Timestamp: 0:11
Video:
https://www.loom.com/share/9db8ba018edf46e7bd5452e0badae717 (https://www.loom.com/share/9db8ba018edf46e7bd5452e0badae717)
Bug report:
https://app.qawolf.com/zoo/bug-reports/fd93b4d3-6b42-4ba7-a551-c38a6a55fd37
Affected workflows:
If you are aware of this bug you can set the priority to low which will prevent it from causing a run failure.
The text was updated successfully, but these errors were encountered: