From 5d78f993cea3749b6644e0a2f9ddf89c9754e377 Mon Sep 17 00:00:00 2001 From: phkahler <14852918+phkahler@users.noreply.github.com> Date: Thu, 19 Sep 2019 21:09:58 -0400 Subject: [PATCH] Make helix origin create a line even if it's in a different group. Helix should always make a line for the axis. --- src/group.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/group.cpp b/src/group.cpp index 223af2e1..3e863f55 100644 --- a/src/group.cpp +++ b/src/group.cpp @@ -622,7 +622,7 @@ void Group::Generate(IdList *entity, // Not using range-for here because we're changing the size of entity in the loop. for(i = 0; i < entity->n; i++) { Entity *e = &(entity->Get(i)); - if(e->group.v != opA.v) + if((e->group.v != opA.v) && !(e->h == predef.origin)) continue; e->CalculateNumerical(/*forExport=*/false);