How do I rotate a coordinate system? Z axis horizontal milling machine

More
10 Dec 2021 18:32 - 10 Dec 2021 18:36 #228792 by Adam Maszynotwór
Hi how to make a view for a milling machine with a horizontal Z axis? By default, we have vertical Z and I need the view to be like on the machine, i.e. horizontally www.steckermachine.com/hs-fs/hubfs/Blog/...g?width=600&name=CNC -Machine-Axis-1.png.
I added the Lathe mode in INI but then I can not see the 3D image (there is only a top view) and I have a rotating C axis in the Z axis and I would like to see it in 3D like here forum.linuxcnc.org/media/kunena/attachme...-11-01at18.21.58.png
I tried to rotate the view manually, but it also does not work because it only allows you to rotate it by certain angles, so it is impossible to set the detail on the left side and the horizontal Z axis. Is it possible to set the view for such a machine?
Last edit: 10 Dec 2021 18:36 by Adam Maszynotwór.

Please Log in or Create an account to join the conversation.

More
12 Dec 2021 14:52 - 12 Dec 2021 14:53 #228927 by andypugh
You don't need to rotate the coordinate system.

It sounds like what you want to do is to rotate the G-code graphical preview? Which GUI are you using?
Last edit: 12 Dec 2021 14:53 by andypugh.

Please Log in or Create an account to join the conversation.

More
12 Dec 2021 15:11 #228928 by andypugh
I think that the predefined views are set here:
github.com/LinuxCNC/linuxcnc/blob/12deb0...hon/rs274/glcanon.py
and it is controlled by the glTranslate glRotate commands. But it seems that these are coded separately for each element of the preview, so you would need to change the glRotate in several places to get the required result (but that is from a brief look at the code, I have not tried anything)

I can confirm, though, that "lathe" is not what you want.

Please Log in or Create an account to join the conversation.

More
13 Dec 2021 06:03 - 13 Dec 2021 06:05 #228991 by Adam Maszynotwór
Thank You and I will try Your suggestion.
I'm trying to do something like in the video

The Z axis is horizontal and this is the view I would like to have the C axis wraps around the Z axis
The lathe view / mode does not have a 3D view option, it is only a top view and you cannot see what the machine is doing
https://www.forum.linuxcnc.org/21-axis/44499-how-do-i-rotate-a-coordinate-system-z-axis-horizontal-milling-machine#gallerywww.forum.linuxcnc.org/21-axis/44499-how...ling-machine#gallery
Attachments:
Last edit: 13 Dec 2021 06:05 by Adam Maszynotwór.

Please Log in or Create an account to join the conversation.

More
13 Dec 2021 09:31 #229005 by andypugh
Is your problem with the orientation of the display, or that the display does not show the B-axis rotation the way that you want?

Please Log in or Create an account to join the conversation.

More
14 Dec 2021 00:08 #229031 by Adam Maszynotwór
What I pasted is a real view of my G-code on the pipe. As you can see, this is a standard view with a vertical Z www.forum.linuxcnc.org/21-axis/44499-how...ling-machine#gallery . I want linuxCNC to run horizontally with the Z axis view like a real machine (that's why I pasted an image rotated 90 in "Paint" to show how I want to see the detail).
There is no problem with the C axis wrap around Z view, it works OK.

Even by hand, you can't rotate the view the way I want - Just linnuxCNC doesn't allow you to rotate the view at will - it has some frame encoded, limiting this freedom in the direction I need.

Please Log in or Create an account to join the conversation.

More
18 Dec 2021 14:12 #229400 by andypugh
I have experimented with changing the z2 view definition in glnav.py.

I haven't got what I wanted, but I think it can be done.

With a stock 2.8 installation the file is /usr/lib/python2.7/dist-packages/glnav.py

I tried changing the "Z2" view, to do this you need to edit line 386. The glRotatef(() line here:
def set_view_z2(self):
        self.reset()
        glRotatef(-90, 0, 0, 1)
        glRotatef(45, 1, 1, 0)
        mid, size = self.extents_info()
        glTranslatef(-mid[0], -mid[1], -mid[2])
        self.set_eyepoint_from_extents(size[1], size[0])
        self.perspective = False
        self.lat = 0
        self.lon = 270
        self._redraw()

As this is a system file you will need to use sudo to edit it. I used "sudo geany" from the command line to open the editor with the right privileges.

glRotatef is documented here:
www.khronos.org/registry/OpenGL-Refpages...1/xhtml/glRotate.xml
With some clearer examples here:
community.khronos.org/t/glrotatef/14062/2

You might need to rotate in two stages to get the view you want (which is why there are two rotates in the sample above)

You need to save the .py file then re-open LinuxCNC to check the result.
The following user(s) said Thank You: Adam Maszynotwór

Please Log in or Create an account to join the conversation.

More
21 Dec 2021 01:39 - 21 Dec 2021 01:45 #229594 by Adam Maszynotwór
Thank you for your help, you led me well


LinuxCNC 2.7.15  file is /usr/lib/pymodules/python2.7/glnav.py
    glLoadIdentity()
    tx, ty, tz = mat[12:15]
    glTranslatef(tx, ty, tz)
    glRotatef(snap(lat), *w.rotation_vectors[1])
    glRotatef(snap(lon), *w.rotation_vectors[0])
    glTranslatef(-xcenter, -ycenter, -zcenter)
    w.lat = lat
    w.lon = lon



    def set_view_y(self):
        self.reset()
        glRotatef(90, 0, 1, 0)
        glRotatef(-90, 0, 0, 1)
        
        if self.is_lathe():
            glRotatef(90, 0, 1, 0)
        mid, size = self.extents_info()
        glTranslatef(-mid[0], -mid[1], -mid[2])
        self.set_eyepoint_from_extents(size[0], size[2])
        self.perspective = False
        self.lat = -90
        self.lon = 0
        self._redraw()

        # lathe backtool display
   
Attachments:
Last edit: 21 Dec 2021 01:45 by Adam Maszynotwór.
The following user(s) said Thank You: tommylight

Please Log in or Create an account to join the conversation.

Time to create page: 0.179 seconds
Powered by Kunena Forum