2008-04-01 10:48:44 +00:00
|
|
|
#include "solvespace.h"
|
|
|
|
|
2008-05-11 06:09:46 +00:00
|
|
|
const hParam Param::NO_PARAM = { 0 };
|
|
|
|
#define NO_PARAM (Param::NO_PARAM)
|
2008-04-01 10:48:44 +00:00
|
|
|
|
2008-04-08 12:54:53 +00:00
|
|
|
const hGroup Group::HGROUP_REFERENCES = { 1 };
|
|
|
|
|
2008-06-02 03:31:37 +00:00
|
|
|
#define gs (SS.GW.gs)
|
|
|
|
|
2008-04-27 09:03:01 +00:00
|
|
|
void Group::AddParam(IdList<Param,hParam> *param, hParam hp, double v) {
|
|
|
|
Param pa;
|
|
|
|
memset(&pa, 0, sizeof(pa));
|
|
|
|
pa.h = hp;
|
|
|
|
pa.val = v;
|
|
|
|
|
|
|
|
param->Add(&pa);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Group::MenuGroup(int id) {
|
|
|
|
Group g;
|
2008-06-02 11:43:27 +00:00
|
|
|
ZERO(&g);
|
2008-04-27 09:03:01 +00:00
|
|
|
g.visible = true;
|
|
|
|
|
2008-05-29 10:10:12 +00:00
|
|
|
if(id >= RECENT_IMPORT && id < (RECENT_IMPORT + MAX_RECENT)) {
|
|
|
|
strcpy(g.impFile, RecentFile[id-RECENT_IMPORT]);
|
|
|
|
id = GraphicsWindow::MNU_GROUP_IMPORT;
|
|
|
|
}
|
|
|
|
|
2008-05-11 10:40:37 +00:00
|
|
|
SS.GW.GroupSelection();
|
|
|
|
|
2008-04-27 09:03:01 +00:00
|
|
|
switch(id) {
|
2008-05-11 02:57:47 +00:00
|
|
|
case GraphicsWindow::MNU_GROUP_3D:
|
2008-05-11 10:40:37 +00:00
|
|
|
g.type = DRAWING_3D;
|
2008-05-11 06:09:46 +00:00
|
|
|
g.name.strcpy("draw-in-3d");
|
2008-04-27 09:03:01 +00:00
|
|
|
break;
|
|
|
|
|
2008-05-11 10:40:37 +00:00
|
|
|
case GraphicsWindow::MNU_GROUP_WRKPL:
|
|
|
|
g.type = DRAWING_WORKPLANE;
|
|
|
|
g.name.strcpy("draw-in-plane");
|
|
|
|
if(gs.points == 1 && gs.n == 1) {
|
2008-05-17 08:02:39 +00:00
|
|
|
g.subtype = WORKPLANE_BY_POINT_ORTHO;
|
2008-05-11 10:40:37 +00:00
|
|
|
|
|
|
|
Vector u = SS.GW.projRight, v = SS.GW.projUp;
|
|
|
|
u = u.ClosestOrtho();
|
|
|
|
v = v.Minus(u.ScaledBy(v.Dot(u)));
|
|
|
|
v = v.ClosestOrtho();
|
|
|
|
|
2008-06-01 08:45:11 +00:00
|
|
|
g.predef.q = Quaternion::From(u, v);
|
2008-06-01 08:29:59 +00:00
|
|
|
g.predef.origin = gs.point[0];
|
2008-05-11 10:40:37 +00:00
|
|
|
} else if(gs.points == 1 && gs.lineSegments == 2 && gs.n == 3) {
|
2008-05-17 08:02:39 +00:00
|
|
|
g.subtype = WORKPLANE_BY_LINE_SEGMENTS;
|
2008-05-11 10:40:37 +00:00
|
|
|
|
2008-06-01 08:29:59 +00:00
|
|
|
g.predef.origin = gs.point[0];
|
|
|
|
g.predef.entityB = gs.entity[0];
|
|
|
|
g.predef.entityC = gs.entity[1];
|
2008-05-11 10:40:37 +00:00
|
|
|
|
2008-06-01 08:29:59 +00:00
|
|
|
Vector ut = SS.GetEntity(g.predef.entityB)->VectorGetNum();
|
|
|
|
Vector vt = SS.GetEntity(g.predef.entityC)->VectorGetNum();
|
2008-05-11 10:40:37 +00:00
|
|
|
ut = ut.WithMagnitude(1);
|
|
|
|
vt = vt.WithMagnitude(1);
|
|
|
|
|
|
|
|
if(fabs(SS.GW.projUp.Dot(vt)) < fabs(SS.GW.projUp.Dot(ut))) {
|
|
|
|
SWAP(Vector, ut, vt);
|
2008-06-01 08:29:59 +00:00
|
|
|
g.predef.swapUV = true;
|
2008-05-11 10:40:37 +00:00
|
|
|
}
|
2008-06-01 08:29:59 +00:00
|
|
|
if(SS.GW.projRight.Dot(ut) < 0) g.predef.negateU = true;
|
|
|
|
if(SS.GW.projUp. Dot(vt) < 0) g.predef.negateV = true;
|
2008-05-11 10:40:37 +00:00
|
|
|
} else {
|
|
|
|
Error("Bad selection for new drawing in workplane.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
SS.GW.ClearSelection();
|
|
|
|
break;
|
|
|
|
|
2008-04-27 09:03:01 +00:00
|
|
|
case GraphicsWindow::MNU_GROUP_EXTRUDE:
|
|
|
|
g.type = EXTRUDE;
|
2008-05-11 06:09:46 +00:00
|
|
|
g.opA = SS.GW.activeGroup;
|
2008-05-30 07:32:30 +00:00
|
|
|
g.color = RGB(100, 100, 100);
|
2008-06-01 08:29:59 +00:00
|
|
|
g.predef.entityB = SS.GW.ActiveWorkplane();
|
2008-05-27 06:36:59 +00:00
|
|
|
g.subtype = ONE_SIDED;
|
2008-04-27 09:03:01 +00:00
|
|
|
g.name.strcpy("extrude");
|
|
|
|
break;
|
|
|
|
|
2008-06-06 11:35:28 +00:00
|
|
|
case GraphicsWindow::MNU_GROUP_LATHE:
|
|
|
|
if(gs.points == 1 && gs.vectors == 1 && gs.n == 2) {
|
|
|
|
g.predef.origin = gs.point[0];
|
|
|
|
g.predef.entityB = gs.vector[0];
|
|
|
|
} else if(gs.lineSegments == 1 && gs.n == 1) {
|
|
|
|
g.predef.origin = SS.GetEntity(gs.entity[0])->point[0];
|
|
|
|
g.predef.entityB = gs.entity[0];
|
|
|
|
// since a line segment is a vector
|
|
|
|
} else {
|
|
|
|
Error("Bad selection for new lathe group.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
g.type = LATHE;
|
|
|
|
g.opA = SS.GW.activeGroup;
|
|
|
|
g.color = RGB(100, 100, 100);
|
|
|
|
g.name.strcpy("lathe");
|
2008-06-09 09:03:21 +00:00
|
|
|
SS.GW.ClearSelection();
|
2008-06-06 11:35:28 +00:00
|
|
|
break;
|
|
|
|
|
2008-06-01 08:29:59 +00:00
|
|
|
case GraphicsWindow::MNU_GROUP_ROT: {
|
|
|
|
Vector n;
|
|
|
|
if(gs.points == 1 && gs.n == 1 && SS.GW.LockedInWorkplane()) {
|
|
|
|
g.predef.p = (SS.GetEntity(gs.point[0]))->PointGetNum();
|
|
|
|
Entity *w = SS.GetEntity(SS.GW.ActiveWorkplane());
|
|
|
|
n = (w->Normal()->NormalN());
|
|
|
|
g.activeWorkplane = w->h;
|
|
|
|
} else if(gs.points == 1 && gs.vectors == 1 && gs.n == 2) {
|
|
|
|
g.predef.p = (SS.GetEntity(gs.point[0]))->PointGetNum();
|
|
|
|
n = SS.GetEntity(gs.vector[0])->VectorGetNum();
|
|
|
|
} else {
|
|
|
|
Error("Bad selection for new rotation.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
n = n.WithMagnitude(1);
|
2008-06-01 08:45:11 +00:00
|
|
|
g.predef.q = Quaternion::From(0, n.x, n.y, n.z);
|
2008-05-11 06:09:46 +00:00
|
|
|
g.type = ROTATE;
|
|
|
|
g.opA = SS.GW.activeGroup;
|
2008-06-01 08:45:11 +00:00
|
|
|
g.exprA = Expr::From(3)->DeepCopyKeep();
|
2008-05-27 06:36:59 +00:00
|
|
|
g.subtype = ONE_SIDED;
|
2008-05-11 06:09:46 +00:00
|
|
|
g.name.strcpy("rotate");
|
2008-06-01 08:29:59 +00:00
|
|
|
SS.GW.ClearSelection();
|
2008-05-11 06:09:46 +00:00
|
|
|
break;
|
2008-06-01 08:29:59 +00:00
|
|
|
}
|
2008-05-11 06:09:46 +00:00
|
|
|
|
2008-05-27 06:36:59 +00:00
|
|
|
case GraphicsWindow::MNU_GROUP_TRANS:
|
|
|
|
g.type = TRANSLATE;
|
|
|
|
g.opA = SS.GW.activeGroup;
|
2008-06-01 08:45:11 +00:00
|
|
|
g.exprA = Expr::From(3)->DeepCopyKeep();
|
2008-05-27 06:36:59 +00:00
|
|
|
g.subtype = ONE_SIDED;
|
2008-06-12 04:36:33 +00:00
|
|
|
g.predef.entityB = SS.GW.ActiveWorkplane();
|
|
|
|
g.activeWorkplane = SS.GW.ActiveWorkplane();
|
2008-05-27 06:36:59 +00:00
|
|
|
g.name.strcpy("translate");
|
|
|
|
break;
|
|
|
|
|
2008-05-29 10:10:12 +00:00
|
|
|
case GraphicsWindow::MNU_GROUP_IMPORT: {
|
|
|
|
g.type = IMPORTED;
|
|
|
|
g.opA = SS.GW.activeGroup;
|
|
|
|
if(strlen(g.impFile) == 0) {
|
|
|
|
if(!GetOpenFile(g.impFile, SLVS_EXT, SLVS_PATTERN)) return;
|
|
|
|
}
|
|
|
|
g.name.strcpy("import");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-04-27 09:03:01 +00:00
|
|
|
default: oops();
|
|
|
|
}
|
2008-06-04 10:22:30 +00:00
|
|
|
SS.UndoRemember();
|
2008-04-27 09:03:01 +00:00
|
|
|
SS.group.AddAndAssignId(&g);
|
2008-06-06 11:35:28 +00:00
|
|
|
Group *gg = SS.GetGroup(g.h);
|
|
|
|
|
|
|
|
if(gg->type == IMPORTED) {
|
2008-05-29 10:10:12 +00:00
|
|
|
SS.ReloadAllImported();
|
|
|
|
}
|
2008-06-06 11:35:28 +00:00
|
|
|
gg->clean = false;
|
|
|
|
SS.GW.activeGroup = gg->h;
|
2008-06-02 09:31:26 +00:00
|
|
|
SS.GenerateAll();
|
2008-06-06 11:35:28 +00:00
|
|
|
if(gg->type == DRAWING_WORKPLANE) {
|
|
|
|
gg->activeWorkplane = gg->h.entity(0);
|
2008-05-11 10:40:37 +00:00
|
|
|
}
|
2008-06-06 11:35:28 +00:00
|
|
|
gg->Activate();
|
2008-05-27 02:22:20 +00:00
|
|
|
SS.GW.AnimateOntoWorkplane();
|
2008-06-06 11:35:28 +00:00
|
|
|
TextWindow::ScreenSelectGroup(0, gg->h.v);
|
2008-06-03 18:28:41 +00:00
|
|
|
SS.later.showTW = true;
|
2008-04-27 09:03:01 +00:00
|
|
|
}
|
|
|
|
|
2008-04-12 14:12:26 +00:00
|
|
|
char *Group::DescriptionString(void) {
|
|
|
|
static char ret[100];
|
|
|
|
if(name.str[0]) {
|
2008-04-28 07:18:39 +00:00
|
|
|
sprintf(ret, "g%03x-%s", h.v, name.str);
|
2008-04-12 14:12:26 +00:00
|
|
|
} else {
|
2008-04-28 07:18:39 +00:00
|
|
|
sprintf(ret, "g%03x-(unnamed)", h.v);
|
2008-04-12 14:12:26 +00:00
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-06-02 05:38:12 +00:00
|
|
|
void Group::Activate(void) {
|
|
|
|
if(type == EXTRUDE || type == IMPORTED) {
|
|
|
|
SS.GW.showFaces = true;
|
|
|
|
} else {
|
|
|
|
SS.GW.showFaces = false;
|
|
|
|
}
|
2008-06-02 11:43:27 +00:00
|
|
|
SS.MarkGroupDirty(h); // for good measure; shouldn't be needed
|
2008-06-03 18:28:41 +00:00
|
|
|
SS.later.generateAll = true;
|
|
|
|
SS.later.showTW = true;
|
2008-06-02 05:38:12 +00:00
|
|
|
}
|
|
|
|
|
2008-04-27 09:03:01 +00:00
|
|
|
void Group::Generate(IdList<Entity,hEntity> *entity,
|
|
|
|
IdList<Param,hParam> *param)
|
|
|
|
{
|
2008-05-07 04:17:29 +00:00
|
|
|
Vector gn = (SS.GW.projRight).Cross(SS.GW.projUp);
|
2008-05-27 06:36:59 +00:00
|
|
|
Vector gp = SS.GW.projRight.Plus(SS.GW.projUp);
|
2008-06-01 08:29:59 +00:00
|
|
|
Vector gc = (SS.GW.offset).ScaledBy(-1);
|
2008-05-07 04:17:29 +00:00
|
|
|
gn = gn.WithMagnitude(200/SS.GW.scale);
|
2008-05-27 06:36:59 +00:00
|
|
|
gp = gp.WithMagnitude(200/SS.GW.scale);
|
|
|
|
int a, i;
|
2008-04-27 09:03:01 +00:00
|
|
|
switch(type) {
|
2008-05-11 10:40:37 +00:00
|
|
|
case DRAWING_3D:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DRAWING_WORKPLANE: {
|
|
|
|
Quaternion q;
|
2008-05-17 08:02:39 +00:00
|
|
|
if(subtype == WORKPLANE_BY_LINE_SEGMENTS) {
|
2008-06-01 08:29:59 +00:00
|
|
|
Vector u = SS.GetEntity(predef.entityB)->VectorGetNum();
|
|
|
|
Vector v = SS.GetEntity(predef.entityC)->VectorGetNum();
|
2008-05-11 10:40:37 +00:00
|
|
|
u = u.WithMagnitude(1);
|
|
|
|
Vector n = u.Cross(v);
|
|
|
|
v = (n.Cross(u)).WithMagnitude(1);
|
|
|
|
|
2008-06-01 08:29:59 +00:00
|
|
|
if(predef.swapUV) SWAP(Vector, u, v);
|
|
|
|
if(predef.negateU) u = u.ScaledBy(-1);
|
|
|
|
if(predef.negateV) v = v.ScaledBy(-1);
|
2008-06-01 08:45:11 +00:00
|
|
|
q = Quaternion::From(u, v);
|
2008-05-17 08:02:39 +00:00
|
|
|
} else if(subtype == WORKPLANE_BY_POINT_ORTHO) {
|
2008-05-11 10:40:37 +00:00
|
|
|
// Already given, numerically.
|
2008-06-01 08:29:59 +00:00
|
|
|
q = predef.q;
|
2008-05-11 10:40:37 +00:00
|
|
|
} else oops();
|
|
|
|
|
|
|
|
Entity normal;
|
|
|
|
memset(&normal, 0, sizeof(normal));
|
|
|
|
normal.type = Entity::NORMAL_N_COPY;
|
|
|
|
normal.numNormal = q;
|
|
|
|
normal.point[0] = h.entity(2);
|
|
|
|
normal.group = h;
|
|
|
|
normal.h = h.entity(1);
|
|
|
|
entity->Add(&normal);
|
|
|
|
|
|
|
|
Entity point;
|
|
|
|
memset(&point, 0, sizeof(point));
|
|
|
|
point.type = Entity::POINT_N_COPY;
|
2008-06-01 08:29:59 +00:00
|
|
|
point.numPoint = SS.GetEntity(predef.origin)->PointGetNum();
|
2008-05-11 10:40:37 +00:00
|
|
|
point.group = h;
|
|
|
|
point.h = h.entity(2);
|
|
|
|
entity->Add(&point);
|
|
|
|
|
|
|
|
Entity wp;
|
|
|
|
memset(&wp, 0, sizeof(wp));
|
|
|
|
wp.type = Entity::WORKPLANE;
|
|
|
|
wp.normal = normal.h;
|
|
|
|
wp.point[0] = point.h;
|
|
|
|
wp.group = h;
|
|
|
|
wp.h = h.entity(0);
|
|
|
|
entity->Add(&wp);
|
|
|
|
break;
|
|
|
|
}
|
2008-04-27 09:03:01 +00:00
|
|
|
|
2008-06-02 03:31:37 +00:00
|
|
|
case EXTRUDE: {
|
2008-05-07 04:17:29 +00:00
|
|
|
AddParam(param, h.param(0), gn.x);
|
|
|
|
AddParam(param, h.param(1), gn.y);
|
|
|
|
AddParam(param, h.param(2), gn.z);
|
2008-05-17 08:02:39 +00:00
|
|
|
int ai, af;
|
2008-05-27 06:36:59 +00:00
|
|
|
if(subtype == ONE_SIDED) {
|
|
|
|
ai = 0; af = 2;
|
|
|
|
} else if(subtype == TWO_SIDED) {
|
2008-05-17 08:02:39 +00:00
|
|
|
ai = -1; af = 1;
|
|
|
|
} else oops();
|
2008-06-02 03:31:37 +00:00
|
|
|
|
|
|
|
// Get some arbitrary point in the sketch, that will be used
|
|
|
|
// as a reference when defining top and bottom faces.
|
|
|
|
hEntity pt = { 0 };
|
2008-04-27 09:03:01 +00:00
|
|
|
for(i = 0; i < entity->n; i++) {
|
|
|
|
Entity *e = &(entity->elem[i]);
|
|
|
|
if(e->group.v != opA.v) continue;
|
|
|
|
|
2008-06-02 03:31:37 +00:00
|
|
|
if(e->IsPoint()) pt = e->h;
|
|
|
|
|
2008-06-13 04:41:27 +00:00
|
|
|
e->CalculateNumerical(false);
|
2008-05-17 08:02:39 +00:00
|
|
|
hEntity he = e->h; e = NULL;
|
|
|
|
// As soon as I call CopyEntity, e may become invalid! That
|
|
|
|
// adds entities, which may cause a realloc.
|
2008-06-06 07:50:08 +00:00
|
|
|
CopyEntity(entity, SS.GetEntity(he), ai, REMAP_BOTTOM,
|
2008-05-11 06:09:46 +00:00
|
|
|
h.param(0), h.param(1), h.param(2),
|
|
|
|
NO_PARAM, NO_PARAM, NO_PARAM, NO_PARAM,
|
2008-06-01 08:29:59 +00:00
|
|
|
true, false);
|
2008-06-06 07:50:08 +00:00
|
|
|
CopyEntity(entity, SS.GetEntity(he), af, REMAP_TOP,
|
2008-05-17 08:02:39 +00:00
|
|
|
h.param(0), h.param(1), h.param(2),
|
|
|
|
NO_PARAM, NO_PARAM, NO_PARAM, NO_PARAM,
|
2008-06-01 08:29:59 +00:00
|
|
|
true, false);
|
2008-06-06 07:50:08 +00:00
|
|
|
MakeExtrusionLines(entity, he);
|
2008-05-11 06:09:46 +00:00
|
|
|
}
|
2008-06-02 03:31:37 +00:00
|
|
|
// Remapped versions of that arbitrary point will be used to
|
|
|
|
// provide points on the plane faces.
|
2008-06-06 07:50:08 +00:00
|
|
|
MakeExtrusionTopBottomFaces(entity, pt);
|
2008-05-11 06:09:46 +00:00
|
|
|
break;
|
2008-06-02 03:31:37 +00:00
|
|
|
}
|
2008-05-11 06:09:46 +00:00
|
|
|
|
2008-06-06 11:35:28 +00:00
|
|
|
case LATHE: {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2008-05-27 06:36:59 +00:00
|
|
|
case TRANSLATE: {
|
|
|
|
// The translation vector
|
|
|
|
AddParam(param, h.param(0), gp.x);
|
|
|
|
AddParam(param, h.param(1), gp.y);
|
|
|
|
AddParam(param, h.param(2), gp.z);
|
|
|
|
|
2008-06-12 04:36:33 +00:00
|
|
|
int n = (int)(exprA->Eval()), a0 = 0;
|
|
|
|
if(subtype == ONE_SIDED && skipFirst) {
|
|
|
|
a0++; n++;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(a = a0; a < n; a++) {
|
2008-05-27 06:36:59 +00:00
|
|
|
for(i = 0; i < entity->n; i++) {
|
|
|
|
Entity *e = &(entity->elem[i]);
|
|
|
|
if(e->group.v != opA.v) continue;
|
|
|
|
|
2008-06-13 04:41:27 +00:00
|
|
|
e->CalculateNumerical(false);
|
2008-06-06 07:50:08 +00:00
|
|
|
CopyEntity(entity, e,
|
2008-06-01 08:29:59 +00:00
|
|
|
a*2 - (subtype == ONE_SIDED ? 0 : (n-1)),
|
|
|
|
(a == (n - 1)) ? REMAP_LAST : a,
|
2008-05-27 06:36:59 +00:00
|
|
|
h.param(0), h.param(1), h.param(2),
|
|
|
|
NO_PARAM, NO_PARAM, NO_PARAM, NO_PARAM,
|
2008-06-01 08:29:59 +00:00
|
|
|
true, false);
|
2008-05-27 06:36:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2008-06-01 08:29:59 +00:00
|
|
|
case ROTATE: {
|
|
|
|
// The center of rotation
|
|
|
|
AddParam(param, h.param(0), gc.x);
|
|
|
|
AddParam(param, h.param(1), gc.y);
|
|
|
|
AddParam(param, h.param(2), gc.z);
|
2008-05-11 06:09:46 +00:00
|
|
|
// The rotation quaternion
|
2008-06-01 08:29:59 +00:00
|
|
|
AddParam(param, h.param(3), 15*PI/180);
|
|
|
|
AddParam(param, h.param(4), gn.x);
|
|
|
|
AddParam(param, h.param(5), gn.y);
|
|
|
|
AddParam(param, h.param(6), gn.z);
|
2008-05-11 06:09:46 +00:00
|
|
|
|
2008-06-12 04:36:33 +00:00
|
|
|
int n = (int)(exprA->Eval()), a0 = 0;
|
|
|
|
if(subtype == ONE_SIDED && skipFirst) {
|
|
|
|
a0++; n++;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(a = a0; a < n; a++) {
|
2008-06-01 08:29:59 +00:00
|
|
|
for(i = 0; i < entity->n; i++) {
|
|
|
|
Entity *e = &(entity->elem[i]);
|
|
|
|
if(e->group.v != opA.v) continue;
|
2008-05-11 06:09:46 +00:00
|
|
|
|
2008-06-13 04:41:27 +00:00
|
|
|
e->CalculateNumerical(false);
|
2008-06-06 07:50:08 +00:00
|
|
|
CopyEntity(entity, e,
|
2008-06-01 08:29:59 +00:00
|
|
|
a*2 - (subtype == ONE_SIDED ? 0 : (n-1)),
|
|
|
|
(a == (n - 1)) ? REMAP_LAST : a,
|
|
|
|
h.param(0), h.param(1), h.param(2),
|
|
|
|
h.param(3), h.param(4), h.param(5), h.param(6),
|
|
|
|
false, true);
|
|
|
|
}
|
2008-05-29 10:10:12 +00:00
|
|
|
}
|
|
|
|
break;
|
2008-06-01 08:29:59 +00:00
|
|
|
}
|
2008-05-29 10:10:12 +00:00
|
|
|
case IMPORTED:
|
|
|
|
// The translation vector
|
|
|
|
AddParam(param, h.param(0), gp.x);
|
|
|
|
AddParam(param, h.param(1), gp.y);
|
|
|
|
AddParam(param, h.param(2), gp.z);
|
|
|
|
// The rotation quaternion
|
|
|
|
AddParam(param, h.param(3), 1);
|
|
|
|
AddParam(param, h.param(4), 0);
|
|
|
|
AddParam(param, h.param(5), 0);
|
|
|
|
AddParam(param, h.param(6), 0);
|
|
|
|
|
|
|
|
for(i = 0; i < impEntity.n; i++) {
|
|
|
|
Entity *ie = &(impEntity.elem[i]);
|
2008-06-06 07:50:08 +00:00
|
|
|
CopyEntity(entity, ie, 0, 0,
|
2008-05-11 06:09:46 +00:00
|
|
|
h.param(0), h.param(1), h.param(2),
|
|
|
|
h.param(3), h.param(4), h.param(5), h.param(6),
|
2008-06-01 08:29:59 +00:00
|
|
|
false, false);
|
2008-04-27 09:03:01 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default: oops();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-06-01 08:29:59 +00:00
|
|
|
void Group::AddEq(IdList<Equation,hEquation> *l, Expr *expr, int index) {
|
|
|
|
Equation eq;
|
|
|
|
eq.e = expr;
|
|
|
|
eq.h = h.equation(index);
|
|
|
|
l->Add(&eq);
|
|
|
|
}
|
|
|
|
|
2008-05-11 06:09:46 +00:00
|
|
|
void Group::GenerateEquations(IdList<Equation,hEquation> *l) {
|
2008-05-16 06:34:06 +00:00
|
|
|
Equation eq;
|
2008-06-01 08:29:59 +00:00
|
|
|
ZERO(&eq);
|
|
|
|
if(type == IMPORTED) {
|
2008-05-11 06:09:46 +00:00
|
|
|
// Normalize the quaternion
|
|
|
|
ExprQuaternion q = {
|
2008-06-01 08:45:11 +00:00
|
|
|
Expr::From(h.param(3)),
|
|
|
|
Expr::From(h.param(4)),
|
|
|
|
Expr::From(h.param(5)),
|
|
|
|
Expr::From(h.param(6)) };
|
|
|
|
AddEq(l, (q.Magnitude())->Minus(Expr::From(1)), 0);
|
2008-06-01 08:29:59 +00:00
|
|
|
} else if(type == ROTATE) {
|
|
|
|
// The axis and center of rotation are specified numerically
|
2008-06-01 08:45:11 +00:00
|
|
|
#define EC(x) (Expr::From(x))
|
|
|
|
#define EP(x) (Expr::From(h.param(x)))
|
2008-06-01 08:29:59 +00:00
|
|
|
AddEq(l, (EC(predef.p.x))->Minus(EP(0)), 0);
|
|
|
|
AddEq(l, (EC(predef.p.y))->Minus(EP(1)), 1);
|
|
|
|
AddEq(l, (EC(predef.p.z))->Minus(EP(2)), 2);
|
|
|
|
// param 3 is the angle, which is free
|
|
|
|
AddEq(l, (EC(predef.q.vx))->Minus(EP(4)), 3);
|
|
|
|
AddEq(l, (EC(predef.q.vy))->Minus(EP(5)), 4);
|
|
|
|
AddEq(l, (EC(predef.q.vz))->Minus(EP(6)), 5);
|
2008-05-16 06:34:06 +00:00
|
|
|
} else if(type == EXTRUDE) {
|
2008-06-01 08:29:59 +00:00
|
|
|
if(predef.entityB.v != Entity::FREE_IN_3D.v) {
|
2008-05-29 10:10:12 +00:00
|
|
|
// The extrusion path is locked along a line, normal to the
|
|
|
|
// specified workplane.
|
2008-06-01 08:29:59 +00:00
|
|
|
Entity *w = SS.GetEntity(predef.entityB);
|
2008-05-16 06:34:06 +00:00
|
|
|
ExprVector u = w->Normal()->NormalExprsU();
|
|
|
|
ExprVector v = w->Normal()->NormalExprsV();
|
|
|
|
ExprVector extruden = {
|
2008-06-01 08:45:11 +00:00
|
|
|
Expr::From(h.param(0)),
|
|
|
|
Expr::From(h.param(1)),
|
|
|
|
Expr::From(h.param(2)) };
|
2008-06-01 08:29:59 +00:00
|
|
|
|
|
|
|
AddEq(l, u.Dot(extruden), 0);
|
|
|
|
AddEq(l, v.Dot(extruden), 1);
|
2008-05-16 06:34:06 +00:00
|
|
|
}
|
2008-06-12 04:36:33 +00:00
|
|
|
} else if(type == TRANSLATE) {
|
|
|
|
if(predef.entityB.v != Entity::FREE_IN_3D.v) {
|
|
|
|
Entity *w = SS.GetEntity(predef.entityB);
|
|
|
|
ExprVector n = w->Normal()->NormalExprsN();
|
|
|
|
ExprVector trans;
|
|
|
|
trans = ExprVector::From(h.param(0), h.param(1), h.param(2));
|
|
|
|
|
|
|
|
// The translation vector is parallel to the workplane
|
|
|
|
AddEq(l, trans.Dot(n), 0);
|
|
|
|
}
|
2008-05-11 06:09:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-04-27 09:03:01 +00:00
|
|
|
hEntity Group::Remap(hEntity in, int copyNumber) {
|
2008-06-12 04:36:33 +00:00
|
|
|
// A hash table is used to accelerate the search
|
|
|
|
int hash = ((unsigned)(in.v*61 + copyNumber)) % REMAP_PRIME;
|
|
|
|
int i = remapCache[hash];
|
|
|
|
if(i >= 0 && i < remap.n) {
|
|
|
|
EntityMap *em = &(remap.elem[i]);
|
|
|
|
if(em->input.v == in.v && em->copyNumber == copyNumber) {
|
|
|
|
return h.entity(em->h.v);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// but if we don't find it in the hash table, then linear search
|
2008-04-27 09:03:01 +00:00
|
|
|
for(i = 0; i < remap.n; i++) {
|
|
|
|
EntityMap *em = &(remap.elem[i]);
|
|
|
|
if(em->input.v == in.v && em->copyNumber == copyNumber) {
|
|
|
|
// We already have a mapping for this entity.
|
2008-06-12 04:36:33 +00:00
|
|
|
remapCache[hash] = i;
|
2008-04-27 09:03:01 +00:00
|
|
|
return h.entity(em->h.v);
|
|
|
|
}
|
|
|
|
}
|
2008-06-12 04:36:33 +00:00
|
|
|
// And if we still don't find it, then create a new entry.
|
2008-04-27 09:03:01 +00:00
|
|
|
EntityMap em;
|
|
|
|
em.input = in;
|
|
|
|
em.copyNumber = copyNumber;
|
|
|
|
remap.AddAndAssignId(&em);
|
|
|
|
return h.entity(em.h.v);
|
|
|
|
}
|
|
|
|
|
2008-06-06 07:50:08 +00:00
|
|
|
void Group::MakeExtrusionLines(IdList<Entity,hEntity> *el, hEntity in) {
|
2008-05-17 08:02:39 +00:00
|
|
|
Entity *ep = SS.GetEntity(in);
|
|
|
|
|
|
|
|
Entity en;
|
2008-06-02 03:31:37 +00:00
|
|
|
ZERO(&en);
|
|
|
|
if(ep->IsPoint()) {
|
|
|
|
// A point gets extruded to form a line segment
|
|
|
|
en.point[0] = Remap(ep->h, REMAP_TOP);
|
|
|
|
en.point[1] = Remap(ep->h, REMAP_BOTTOM);
|
|
|
|
en.group = h;
|
|
|
|
en.h = Remap(ep->h, REMAP_PT_TO_LINE);
|
|
|
|
en.type = Entity::LINE_SEGMENT;
|
2008-06-06 07:50:08 +00:00
|
|
|
el->Add(&en);
|
2008-06-02 03:31:37 +00:00
|
|
|
} else if(ep->type == Entity::LINE_SEGMENT) {
|
|
|
|
// A line gets extruded to form a plane face; an endpoint of the
|
|
|
|
// original line is a point in the plane, and the line is in the plane.
|
|
|
|
Vector a = SS.GetEntity(ep->point[0])->PointGetNum();
|
|
|
|
Vector b = SS.GetEntity(ep->point[1])->PointGetNum();
|
|
|
|
Vector ab = b.Minus(a);
|
|
|
|
|
|
|
|
en.param[0] = h.param(0);
|
|
|
|
en.param[1] = h.param(1);
|
|
|
|
en.param[2] = h.param(2);
|
|
|
|
en.numPoint = a;
|
2008-06-13 04:41:27 +00:00
|
|
|
en.numNormal = Quaternion::From(0, ab.x, ab.y, ab.z);
|
2008-06-02 03:31:37 +00:00
|
|
|
|
|
|
|
en.group = h;
|
|
|
|
en.h = Remap(ep->h, REMAP_LINE_TO_FACE);
|
|
|
|
en.type = Entity::FACE_XPROD;
|
2008-06-06 07:50:08 +00:00
|
|
|
el->Add(&en);
|
2008-06-02 03:31:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-06-06 07:50:08 +00:00
|
|
|
void Group::MakeExtrusionTopBottomFaces(IdList<Entity,hEntity> *el, hEntity pt)
|
|
|
|
{
|
2008-06-02 03:31:37 +00:00
|
|
|
if(pt.v == 0) return;
|
|
|
|
Group *src = SS.GetGroup(opA);
|
|
|
|
Vector n = src->poly.normal;
|
|
|
|
|
|
|
|
Entity en;
|
|
|
|
ZERO(&en);
|
|
|
|
en.type = Entity::FACE_NORMAL_PT;
|
2008-05-17 08:02:39 +00:00
|
|
|
en.group = h;
|
2008-06-02 03:31:37 +00:00
|
|
|
|
|
|
|
en.numNormal = Quaternion::From(0, n.x, n.y, n.z);
|
|
|
|
en.point[0] = Remap(pt, REMAP_TOP);
|
|
|
|
en.h = Remap(Entity::NO_ENTITY, REMAP_TOP);
|
2008-06-06 07:50:08 +00:00
|
|
|
el->Add(&en);
|
2008-06-02 03:31:37 +00:00
|
|
|
|
|
|
|
en.point[0] = Remap(pt, REMAP_BOTTOM);
|
|
|
|
en.h = Remap(Entity::NO_ENTITY, REMAP_BOTTOM);
|
2008-06-06 07:50:08 +00:00
|
|
|
el->Add(&en);
|
2008-05-17 08:02:39 +00:00
|
|
|
}
|
|
|
|
|
2008-06-06 07:50:08 +00:00
|
|
|
void Group::CopyEntity(IdList<Entity,hEntity> *el,
|
|
|
|
Entity *ep, int timesApplied, int remap,
|
2008-06-01 08:29:59 +00:00
|
|
|
hParam dx, hParam dy, hParam dz,
|
2008-05-11 06:09:46 +00:00
|
|
|
hParam qw, hParam qvx, hParam qvy, hParam qvz,
|
2008-06-01 08:29:59 +00:00
|
|
|
bool asTrans, bool asAxisAngle)
|
2008-05-05 06:18:01 +00:00
|
|
|
{
|
2008-04-27 09:03:01 +00:00
|
|
|
Entity en;
|
|
|
|
memset(&en, 0, sizeof(en));
|
|
|
|
en.type = ep->type;
|
2008-06-01 08:29:59 +00:00
|
|
|
en.h = Remap(ep->h, remap);
|
|
|
|
en.timesApplied = timesApplied;
|
2008-04-27 09:03:01 +00:00
|
|
|
en.group = h;
|
2008-05-25 14:36:03 +00:00
|
|
|
en.construction = ep->construction;
|
2008-04-27 09:03:01 +00:00
|
|
|
|
|
|
|
switch(ep->type) {
|
|
|
|
case Entity::WORKPLANE:
|
|
|
|
// Don't copy these.
|
|
|
|
return;
|
|
|
|
|
|
|
|
case Entity::LINE_SEGMENT:
|
2008-06-01 08:29:59 +00:00
|
|
|
en.point[0] = Remap(ep->point[0], remap);
|
|
|
|
en.point[1] = Remap(ep->point[1], remap);
|
2008-04-27 09:03:01 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Entity::CUBIC:
|
2008-06-01 08:29:59 +00:00
|
|
|
en.point[0] = Remap(ep->point[0], remap);
|
|
|
|
en.point[1] = Remap(ep->point[1], remap);
|
|
|
|
en.point[2] = Remap(ep->point[2], remap);
|
|
|
|
en.point[3] = Remap(ep->point[3], remap);
|
2008-04-27 09:03:01 +00:00
|
|
|
break;
|
|
|
|
|
2008-05-05 06:18:01 +00:00
|
|
|
case Entity::CIRCLE:
|
2008-06-01 08:29:59 +00:00
|
|
|
en.point[0] = Remap(ep->point[0], remap);
|
|
|
|
en.normal = Remap(ep->normal, remap);
|
|
|
|
en.distance = Remap(ep->distance, remap);
|
2008-05-05 06:18:01 +00:00
|
|
|
break;
|
|
|
|
|
2008-05-12 10:01:44 +00:00
|
|
|
case Entity::ARC_OF_CIRCLE:
|
2008-06-01 08:29:59 +00:00
|
|
|
en.point[0] = Remap(ep->point[0], remap);
|
|
|
|
en.point[1] = Remap(ep->point[1], remap);
|
|
|
|
en.point[2] = Remap(ep->point[2], remap);
|
|
|
|
en.normal = Remap(ep->normal, remap);
|
2008-05-12 10:01:44 +00:00
|
|
|
break;
|
|
|
|
|
2008-05-11 10:40:37 +00:00
|
|
|
case Entity::POINT_N_COPY:
|
2008-05-11 06:09:46 +00:00
|
|
|
case Entity::POINT_N_TRANS:
|
|
|
|
case Entity::POINT_N_ROT_TRANS:
|
2008-06-01 08:29:59 +00:00
|
|
|
case Entity::POINT_N_ROT_AA:
|
2008-04-27 09:03:01 +00:00
|
|
|
case Entity::POINT_IN_3D:
|
|
|
|
case Entity::POINT_IN_2D:
|
2008-06-01 08:29:59 +00:00
|
|
|
if(asTrans) {
|
2008-05-11 06:09:46 +00:00
|
|
|
en.type = Entity::POINT_N_TRANS;
|
|
|
|
en.param[0] = dx;
|
|
|
|
en.param[1] = dy;
|
|
|
|
en.param[2] = dz;
|
|
|
|
} else {
|
2008-06-01 08:29:59 +00:00
|
|
|
if(asAxisAngle) {
|
|
|
|
en.type = Entity::POINT_N_ROT_AA;
|
|
|
|
} else {
|
|
|
|
en.type = Entity::POINT_N_ROT_TRANS;
|
|
|
|
}
|
2008-05-11 06:09:46 +00:00
|
|
|
en.param[0] = dx;
|
|
|
|
en.param[1] = dy;
|
|
|
|
en.param[2] = dz;
|
|
|
|
en.param[3] = qw;
|
|
|
|
en.param[4] = qvx;
|
|
|
|
en.param[5] = qvy;
|
|
|
|
en.param[6] = qvz;
|
2008-05-05 06:18:01 +00:00
|
|
|
}
|
2008-05-29 10:10:12 +00:00
|
|
|
en.numPoint = ep->actPoint;
|
2008-05-05 06:18:01 +00:00
|
|
|
break;
|
|
|
|
|
2008-05-11 06:09:46 +00:00
|
|
|
case Entity::NORMAL_N_COPY:
|
|
|
|
case Entity::NORMAL_N_ROT:
|
2008-06-01 08:29:59 +00:00
|
|
|
case Entity::NORMAL_N_ROT_AA:
|
2008-05-05 06:18:01 +00:00
|
|
|
case Entity::NORMAL_IN_3D:
|
|
|
|
case Entity::NORMAL_IN_2D:
|
2008-06-01 08:29:59 +00:00
|
|
|
if(asTrans) {
|
2008-05-11 06:09:46 +00:00
|
|
|
en.type = Entity::NORMAL_N_COPY;
|
|
|
|
} else {
|
2008-06-01 08:29:59 +00:00
|
|
|
if(asAxisAngle) {
|
|
|
|
en.type = Entity::NORMAL_N_ROT_AA;
|
|
|
|
} else {
|
|
|
|
en.type = Entity::NORMAL_N_ROT;
|
|
|
|
}
|
2008-05-11 06:09:46 +00:00
|
|
|
en.param[0] = qw;
|
|
|
|
en.param[1] = qvx;
|
|
|
|
en.param[2] = qvy;
|
|
|
|
en.param[3] = qvz;
|
|
|
|
}
|
2008-05-29 10:10:12 +00:00
|
|
|
en.numNormal = ep->actNormal;
|
2008-06-01 08:29:59 +00:00
|
|
|
en.point[0] = Remap(ep->point[0], remap);
|
2008-04-27 09:03:01 +00:00
|
|
|
break;
|
|
|
|
|
2008-05-11 06:09:46 +00:00
|
|
|
case Entity::DISTANCE_N_COPY:
|
2008-05-07 08:19:37 +00:00
|
|
|
case Entity::DISTANCE:
|
2008-05-11 06:09:46 +00:00
|
|
|
en.type = Entity::DISTANCE_N_COPY;
|
2008-05-29 10:10:12 +00:00
|
|
|
en.numDistance = ep->actDistance;
|
2008-05-07 08:19:37 +00:00
|
|
|
break;
|
|
|
|
|
2008-06-02 03:31:37 +00:00
|
|
|
case Entity::FACE_NORMAL_PT:
|
|
|
|
case Entity::FACE_XPROD:
|
|
|
|
case Entity::FACE_N_ROT_TRANS:
|
|
|
|
if(asTrans || asAxisAngle) return;
|
|
|
|
|
|
|
|
en.type = Entity::FACE_N_ROT_TRANS;
|
|
|
|
en.param[0] = dx;
|
|
|
|
en.param[1] = dy;
|
|
|
|
en.param[2] = dz;
|
|
|
|
en.param[3] = qw;
|
|
|
|
en.param[4] = qvx;
|
|
|
|
en.param[5] = qvy;
|
|
|
|
en.param[6] = qvz;
|
2008-06-13 04:41:27 +00:00
|
|
|
en.numPoint = ep->actPoint;
|
|
|
|
en.numNormal = ep->actNormal;
|
2008-06-02 03:31:37 +00:00
|
|
|
break;
|
|
|
|
|
2008-04-27 09:03:01 +00:00
|
|
|
default:
|
|
|
|
oops();
|
|
|
|
}
|
2008-06-13 04:41:27 +00:00
|
|
|
en.forceHidden = !ep->actVisible;
|
|
|
|
|
2008-06-06 07:50:08 +00:00
|
|
|
el->Add(&en);
|
2008-04-27 09:03:01 +00:00
|
|
|
}
|
|
|
|
|
2008-06-01 00:26:41 +00:00
|
|
|
void Group::TagEdgesFromLineSegments(SEdgeList *el) {
|
|
|
|
int i, j;
|
|
|
|
for(i = 0; i < SS.entity.n; i++) {
|
|
|
|
Entity *e = &(SS.entity.elem[i]);
|
|
|
|
if(e->group.v != opA.v) continue;
|
|
|
|
if(e->type != Entity::LINE_SEGMENT) continue;
|
|
|
|
|
|
|
|
Vector p0 = SS.GetEntity(e->point[0])->PointGetNum();
|
|
|
|
Vector p1 = SS.GetEntity(e->point[1])->PointGetNum();
|
|
|
|
|
|
|
|
for(j = 0; j < el->l.n; j++) {
|
|
|
|
SEdge *se = &(el->l.elem[j]);
|
2008-06-02 03:31:37 +00:00
|
|
|
if((p0.Equals(se->a) && p1.Equals(se->b))) se->tag = e->h.v;
|
|
|
|
if((p0.Equals(se->b) && p1.Equals(se->a))) se->tag = e->h.v;
|
2008-06-01 00:26:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|