Group bug, added everything into one group

Made first group, made another group. Everything added into one group.


Group bug.3dm (54.7 KB)

Hello - thanks, I see this…
https://mcneel.myjetbrains.com/youtrack/issue/RH-44056

@akche001 - can you please tell me what build of Rhino you are running? Run SystemInfo in Rhino and copy/paste the first line here. Thanks.

-Pascal

Thanks Pascal!

Sure

Rhino 6 SR2 2018-2-7 (Rhino 6, 6.2.18038.4101, Git hash:master @ a558313bc402d40d17bdf4500977c08ab6e465e4)

Windows 10.0 SR0.0 or greater (Physical RAM: 7.9Gb)

GeForce GTS 450/PCIe/SSE2 (OpenGL ver:4.6.0 NVIDIA 390.77)

OpenGL Settings
Safe mode: Off
Use accelerated hardware modes: On
Redraw scene when viewports are exposed: On

Anti-alias mode: 8x
Mip Map Filtering: Linear
Anisotropic Filtering Mode: Height

Vendor Name: NVIDIA Corporation
Render version: 4.6
Shading Language: 4.60 NVIDIA
Driver Date: 1-23-2018
Driver Version: 23.21.13.9077
Maximum Texture size: 16384 x 16384
Z-Buffer depth: 24 bits
Maximum Viewport size: 16384 x 16384
Total Video Memory: 1 GB

C:\Program Files\Rhino 6\Plug-ins\Commands.rhp “Commands”
C:\Program Files\Rhino 6\Plug-ins\WebBrowser.rhp “WebBrowser”
C:\Program Files\Rhino 6\Plug-ins\rdk.rhp “Renderer Development Kit”
C:\Program Files\Rhino 6\Plug-ins\RhinoScript.rhp “RhinoScript”
C:\Program Files\Rhino 6\Plug-ins\IdleProcessor.rhp “IdleProcessor”
C:\Program Files\Rhino 6\Plug-ins\RhinoRender.rhp “Rhino Render”
C:\Program Files\Rhino 6\Plug-ins\rdk_etoui.rhp “RDK_EtoUI”
C:\Program Files\Rhino 6\Plug-ins\rdk_ui.rhp “Renderer Development Kit UI”
C:\Program Files\Rhino 6\Plug-ins\NamedSnapshots.rhp “Snapshots”
C:\Program Files\Rhino 6\Plug-ins\Alerter.rhp “Alerter”
C:\Program Files\Rhino 6\Plug-ins\RhinoCycles.rhp “RhinoCycles”
C:\Program Files\Rhino 6\Plug-ins\Toolbars\Toolbars.rhp “Toolbars”
C:\Program Files\Rhino 6\Plug-ins\3dxrhino.rhp “3Dconnexion 3D Mouse”
C:\Program Files\Rhino 6\Plug-ins\Displacement.rhp “Displacement”
C:\Program Files\Rhino 6\Plug-ins\Calc.rhp “Calc”

Thanks. Looks like it is only an SR2 bug so far.

-Pascal

Yes, exactly. No problem with previous release.

I noticed this behavior in rhino5 when I use rhinoscriptsyntax to copy or translate objects in a group. They always end up in the same group. I don’t know if this is normal or not.

import rhinoscriptsyntax as rs
objs = rs.GetObjects("select a group of objects:")
rs.CopyObjects(objs, [0,0,3000]) #the copy will become part of the group

Hi Bogdan - Yeah… I think this is probably at least ok in scripting - you have the control in the script to handle it.

import rhinoscriptsyntax as rs
objs = rs.GetObjects("select a group of objects:")
x = rs.CopyObjects(objs, [0,0,3000])
for id in x:
    rs.RemoveObjectFromAllGroups(id)
y = rs.AddGroup()
rs.AddObjectsToGroup(x,y)

The bug in 6.2 appears to be that all added groups are called the same thing, which makes them all one group. In the script, whatever group memberships the objects have are kept on copying. That might or might not be the right thing to do but as far as I can see it is a different problem…

-Pascal

Same problem here latest release candidate, making 1 group , and then making another grouip makes it 1 group, not handy

That’s what this topic is about, RC (6.2.18038.4101, 07/02/2018) problem.

Thanks @pascal

The problem complicates easily if, for example, I have several groups and need the copies as several other groups, or even worse, if I have groups inside groups.

This bug is not smashed in (6.2.18043.22301, 12/02/2018) and it’s annoying. :roll_eyes:

Dito

Hi All - this was fixed yesterday - the next 6.2 RC should have the fix.

-Pascal

1 Like

RH-44056 is fixed in the latest Service Release Candidate

1 Like