forked from URJCMakerGroup/MakerWorkbench
-
Notifications
You must be signed in to change notification settings - Fork 0
/
grafic.py
95 lines (87 loc) · 4.02 KB
/
grafic.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# -*- coding: utf-8 -*-
# FreeCAD script to do assembly of mechatronic systems
# (c) 2019 David Muñoz Bernal
# ***************************************************************************
# * (c) David Muñoz Bernal *
# * *
# * This file is part of the FreeCAD CAx development system. *
# * *
# * This program is free software; you can redistribute it and/or modify *
# * it under the terms of the GNU Lesser General Public License (LGPL) *
# * as published by the Free Software Foundation; either version 2 of *
# * the License, or (at your option) any later version. *
# * for detail see the LICENCE text file. *
# * *
# * FreeCAD is distributed in the hope that it will be useful, *
# * but WITHOUT ANY WARRANTY; without even the implied warranty of *
# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
# * GNU Lesser General Public License for more details. *
# * *
# * You should have received a copy of the GNU Library General Public *
# * License along with FreeCAD; if not, write to the Free Software *
# * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 *
# * USA *
# * *
# ***************************************************************************/
import FreeCAD
import FreeCADGui
def grafic():
obj_select = FreeCADGui.Selection.getSelection()[0]
sel = FreeCADGui.Selection.getSelectionEx()[0].SubObjects[0]
pos1 = obj_select.getGlobalPlacement().Base
try:
p_1 = sel.CenterOfMass
except:
p_1 = sel.Placement.Base
# o_1 = Sel.Orientation ------------------------------- DIDN'T KNOW HOW TO CHANGE
# Relative position of the center respect the point select
p_ret_1 = FreeCAD.Vector(0, 0, 0)
# ------------------------------
if p_1.x >= pos1.x:
p_ret_1.x = pos1.x - p_1.x
else: # p_1.x < pos1.x:
p_ret_1.x = p_1.x - pos1.x
# ------------------------------
if p_1.y >= pos1.y:
p_ret_1.y = pos1.y - p_1.y
else: # p_1.y < pos1.y:
p_ret_1.y = p_1.y - pos1.y
# ------------------------------
if p_1.z >= pos1.z:
p_ret_1.z = pos1.z - p_1.z
else: # p_1.z < pos1.z:
p_ret_1.z = p_1.z - pos1.z
# ------------------------------
obj_select_2 = FreeCADGui.Selection.getSelection()[1]
sel_2 = FreeCADGui.Selection.getSelectionEx()[1].SubObjects[0]
pos2 = obj_select_2.getGlobalPlacement().Base
try:
p_2 = sel_2.CenterOfMass
except:
p_2 = sel_2.Placement.Base # don't WORK
# o_2 = Sel2.Orientation ------------------------------- DIDN'T KNOW HOW TO CHANGE
# Relative position of the center respect the edge select
p_ret_2 = FreeCAD.Vector(0, 0, 0)
# ------------------------------
if p_2.x >= pos2.x:
p_ret_2.x = pos2.x - p_2.x
else: # p_2.x < pos2.x:
p_ret_2.x = p_2.x - pos2.x
# ------------------------------
if p_2.y >= pos2.y:
p_ret_2.y = pos2.y - p_2.y
else: # p_2.y < pos2.y:
p_ret_2.y = p_2.y - pos2.y
# ------------------------------
if p_2.z >= pos2.z:
p_ret_2.z = pos2.z - p_2.z
else: # p_2.z < pos2.z:
p_ret_2.z = p_2.z - pos2.z
# ------------------------------
p_final = FreeCAD.Vector(0, 0, 0)
# -------------------------------------
p_final.x = pos1.x + (p_2.x - p_1.x)
p_final.y = pos1.y + (p_2.y - p_1.y)
p_final.z = pos1.z + (p_2.z - p_1.z)
# -------------------------------------
obj_select.Placement.Base = p_final