Macro FCInfoGlass: Difference between revisions

From FreeCAD Documentation
(translate)
(Fixed icon location for Addon Manager.)
 
(35 intermediate revisions by 5 users not shown)
Line 1: Line 1:
<languages/>
<translate>
<translate>
{{Macro|Icon=Macro_FCInfoGlass|Name=Macro FCInfo|Description=Gives a series of information on the form display in the 3D view.|Author=Mario52}}


<!--T:1-->
Gives a series of informations about the selected shape and can display a directly in the 3D view
{{Macro
|Name=Macro FCInfoGlass
|Description=Gives a series of information on the form display in the 3D view.
|Author=Mario52
|Download=[https://wiki.freecad.org/images/6/6b/Macro_FCInfoGlass.png ToolBar Icon]
|Version=00.05
|Date=2016-08-28
|SeeAlso=[[Arch_Survey|Arch Survey]]
}}


==Description== <!--T:2-->


<!--T:43-->
[[File:Macro_FCTransparentInfo_00.FCMacro.png|480px|FCInfoGlass]]
Gives a series of informations about the selected shape and can display a directly in the 3D view


</translate>
===Utilisation===
{{Codeextralink|https://gist.githubusercontent.com/mario52a/553b1fc7a8ca5bfa44c6/raw/fc57ec0869a8f68ce396acbaed5e87f396426186/Macro_FCInfoGlass.FCMacro}}
Select an object or launch the application and select an object, and a series of informations appear on the 3D View.
<translate>


Modify this line to move the data display in the screen (line 115)
</translate>
</translate>
[[File:Macro_FCTransparentInfo_00.FCMacro.png|480px]]
<syntaxhighlight>
MainWindow.setGeometry(400, 200, 500, 500) # positionne la fenetre dans l'ecran
# modify this line for posioned the window
</syntaxhighlight>
<translate>
<translate>
<!--T:3-->
* 400, 200 = position X, Y upper left corner
{{Caption|FCInfoGlass}}
* 500, 500 = position x, y right corner


==Utilisation== <!--T:44-->
It is not possible at the moment to leave the function from the macro or scrolling


<!--T:4-->
One mouse click on the object display the information of the object, two mouse click select the object complete and displayed alls informations
Select an object or launch the application and select an object, and a series of informations appear on the 3D View.


<!--T:5-->
(it is possible you can not see everything informations in the window for the moment)
'''Modify this line''' to move the data display in the screen (lines 84, 85)
</translate>
{{Code|code=
global posiX ; posiX = 900 # position window coordinate X "defaut = 900"
global posiY ; posiY = 190 # position window coordinate Y "defaut = 190"
}}
<translate>
<!--T:6-->
* 900, 190 = position X, Y upper left corner


<!--T:22-->
===Script===
'''Modify this line''' for change color (line 92)
</translate>
</translate>
'''Macro_FCInfoGlass.FCMacro''' [[File:Macro_FCInfoGlass.png|64px|FCInfoGlass]]


{{Code|code=
<syntaxhighlight>
#######################################################################
# Section color #
global colorize ; colorize ="black" # colorize the text choice "defaut = "black"
# "black" "white" "red" "green" "blue" "yellow" "magenta" "cyan"


}}
<translate>
==Examples:== <!--T:23-->


<!--T:24-->
Availlable : ''' "black" "white" "red" "green" "blue" "yellow" "magenta" "cyan" '''
<center>
<gallery widths="300" heights="300">
Image:Macro FCInfoGlass 01.png|'''colorize ="black"'''
Image:Macro FCInfoGlass 02.png|'''colorize ="white"'''
</gallery>
</center>
{{clear}}
<center>
<gallery widths="300" heights="300">
Image:Macro FCInfoGlass 03.png|'''colorize ="red"'''
Image:Macro FCInfoGlass 04.png|'''colorize ="yellow"'''
</gallery>
</center>
{{clear}}


# -*- coding: utf-8 -*-
<!--T:14-->
This section hare switch give value '''1''' for displayed the info or '''0''' for not displayed the info
from __future__ import unicode_literals
"""
***************************************************************************
* Copyright (c) 2014 <mario52> *
* *
* This file is a supplement to 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. *
* *
* This software 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 Library General Public License for more details. *
* *
* You should have received a copy of the GNU Library General Public *
* License along with this macro; if not, write to the Free Software *
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 *
* USA *
***************************************************************************
* WARNING! All changes in this file will be lost and *
* may cause malfunction of the program *
***************************************************************************
"""
#
#OS: Windows 8.1
#Word size of OS: 64-bit
#Word size of FreeCAD: 64-bit
#Version: 0.15.4671 (Git)
#Branch: releases/FreeCAD-0-15
#Hash: 244b3aef360841646cbfe80a1b225c8b39c8380c
#Python version: 2.7.8
#Qt version: 4.8.6
#Coin version: 4.0.0a
#OCC version: 6.8.0.oce-0.17
#
__title__="FCInfoGlass"
__author__ = "Mario52"
__url__ = "http://www.freecadweb.org/index-fr.html"
__version__ = "00.01"
__date__ = "30/07/2015"


<!--T:15-->
__Comment__ = "displays various information on the screen"
'''Example:'''
__Web__ = ""
__Wiki__ = ""
__Icon__ = "/usr/lib/freecad/Mod/plugins/icons/.png"
__IconW__ = "C:/Documents and Settings/YourUserName/Application Data/FreeCAD"
__Help__ = ""
__Status__ = "not finished"
__Requires__ = "FreeCAD 0.14.3706"
__Communication__ = "http://www.freecadweb.org/wiki/index.php?title=User:Mario52"


<!--T:16-->
try:
is displayed ( = '''1''' )
import PyQt4
from PyQt4 import QtGui ,QtCore
from PyQt4.QtGui import *
from PyQt4.QtCore import *
except Exception:
import PySide
from PySide import QtGui ,QtCore
from PySide.QtGui import *
from PySide.QtCore import *
import Draft, Part, FreeCAD, math, PartGui, FreeCADGui, FreeCAD
from math import sqrt, pi, sin, cos, asin
from FreeCAD import Base


</translate>
global path
{{Code|code=
#path = FreeCAD.ConfigGet("AppHomePath")
global LabelObject ;LabelObject = 1 # Label #3 Label Object
path = FreeCAD.ConfigGet("UserAppData")
}}
global texteInfo ; texteInfo = ""
<translate>
<!--T:19-->
is not displayed ( = '''0''' )
</translate>
{{Code|code=
global LabelObject ;LabelObject = 0 # Label #3 Label Object
}}
<translate>
<!--T:20-->
The section lines 79 to 171


</translate>
try:
{{Code|code=
_fromUtf8 = QtCore.QString.fromUtf8
#######################################################################
except AttributeError:
global visualiserWindow ; visualiserWindow = 0 # si visualiserWindow = 1 la fenetre est visible (pour test) "defaut = 0"
def _fromUtf8(s):
# if visualiserWindow = 1 the windows is visible (for test) "default = 0"
return s
###Section Configuration ##############################################
# Placement window hidden #
global posiX ; posiX = 900 # position window coordinate X "defaut = 900"
global posiY ; posiY = 190 # position window coordinate Y "defaut = 190"
#######################################################################
global SizeX ; SizeX = 600 # size window length (do not modify) "defaut = 600"
global SizeY ; SizeY = 600 # size window heigth (do not modify) "defaut = 600"


try:
_encoding = QtGui.QApplication.UnicodeUTF8
def _translate(context, text, disambig):
return QtGui.QApplication.translate(context, text, disambig, _encoding)
except AttributeError:
def _translate(context, text, disambig):
return QtGui.QApplication.translate(context, text, disambig)


#######################################################################
def errorDialog(msg):
# Section color #
diag = QtGui.QMessageBox(QtGui.QMessageBox.Critical,u"Error Message",msg )
global colorize ; colorize ="black" # colorize the text choice "defaut = "black"
try:
# "black" "white" "red" "green" "blue" "yellow" "magenta" "cyan"
diag.setWindowFlags(PyQt4.QtCore.Qt.WindowStaysOnTopHint) # PyQt4 # cette fonction met la fenêtre en avant
except Exception:
diag.setWindowFlags(PySide.QtCore.Qt.WindowStaysOnTopHint) # PySide #cette fonction met la fenêtre en avant
# diag.setWindowModality(QtCore.Qt.ApplicationModal) # la fonction a été désactivée pour favoriser "WindowStaysOnTopHint"
diag.exec_()
class Ui_MainWindow(object):


global path
global texteInfo
def setupUi(self, MainWindow):
self.window = MainWindow
global path
global texteInfo


#######################################################################
MainWindow.setObjectName("MainWindow")
# Section inter #
MainWindow.setWindowTitle("Fenetre Transparente Info ")
MainWindow.resize(400, 400) # dimenssions exterieures de la fenetre
global mode ; mode = 1 # mode 1=degrees mode 0=radians "defaut = 1"
global arondi ; arondi = 4 # many numbers after the decimal point "defaut = 4"
MainWindow.setMinimumSize(QtCore.QSize(400, 400)) #
global chaineRemplacement ; chaineRemplacement = "_" # replacement string (1 character) "defaut = "_"
MainWindow.setMaximumSize(QtCore.QSize(400, 400)) #


MainWindow.setGeometry(400, 200, 500, 500) # positionne la fenetre dans l'ecran
# modify this line for posionned the window
MainWindow.setWindowOpacity(1) # rend la fenetre +/- opaque
MainWindow.setWindowFlags(QtCore.Qt.FramelessWindowHint) # rend la fenêtre transparente et cache le cadre
MainWindow.setAttribute(QtCore.Qt.WA_TranslucentBackground, True) # ne pas bouger ,True
MainWindow.setStyleSheet("background:transparent;") # rend le fond transparent
self.istransparent = True


################ test bouton
#######################################################################
# section switch
# self.frame = QtGui.QFrame(MainWindow)
# if switch = 1 then actif (True Displayed) else inactif (False not Displayed)
# self.frame.setGeometry(QtCore.QRect(10, 370, 381, 24))
global PrintReportView ;PrintReportView = 1 # Affichage dans la vue rapport #0 Displayed ReportView
# self.frame.setFrameShape(QtGui.QFrame.StyledPanel)
##
# self.frame.setFrameShadow(QtGui.QFrame.Raised)
global DocumentName ;DocumentName = 1 # Nom du document #1 Document Name
# self.frame.setObjectName(_fromUtf8("frame"))
global InternalName ;InternalName = 1 # Nom interne de l'objet #2 Internal Name
# self.PBQuit = QtGui.QPushButton(self.frame)
global LabelObject ;LabelObject = 1 # Label #3 Label Object
# self.PBQuit.setGeometry(QtCore.QRect(0, 0, 101, 23))
global ElementName ;ElementName = 1 # Nom de l'element #4 Element Name
# self.PBQuit.setObjectName(_fromUtf8("PBQuit"))
global ObjectType ;ObjectType = 1 # Type d'objet #5 Object Type
# self.PBQuit.clicked.connect(self.on_PBQuit) ###
global LineSeparateTitle ;LineSeparateTitle = 1 # ligne de separation des titres ____________ #6 Line Separate of Title
###################


## Object subObject
#########################################
global ObjectLength ;ObjectLength = 1 # longueur Objet ou perimetre si c est une face #7 Object Length or perimetre if are a face
#cree un cadre aux dimensions MainWindow.resize(400, 400) mais cache la fenetre textEdit OK
global ObjectCurveRadius ;ObjectCurveRadius = 1 # rayon du subObject si arc ou cerle #8 radius subObject if arc or cirle
# self.centralWidget = QtGui.QWidget(MainWindow)
global ObjectCurveCenter ;ObjectCurveCenter = 1 # coordonnees centrale subObject si arc ou cerle #9 coordinates center subObject if arc or cirle
# self.centralWidget.setObjectName(_fromUtf8("centralWidget"))
# self.tableWidget = QtGui.QTableWidget(self.centralWidget)
# self.tableWidget.setGeometry(QtCore.QRect(0, 0, 400, 400))
##########################################


## Draft
MainWindow.setWindowFlags(QtCore.Qt.FramelessWindowHint | QtCore.Qt.WindowStaysOnTopHint) # met la fenetre en avant
global LineDimension ;LineDimension = 1 # Dimensions Line #10 Line Dimension
global DWireDimension ;DWireDimension = 1 # Dimensions DWire #11 DWire Dimension
global CircleDimension ;CircleDimension = 1 # Dimensions Circle #12 Circle Dimension
global CirclePartDimension ;CirclePartDimension = 1 # Dimensions Circle Part #13 Circle Part Dimension


global ArcDimension ;ArcDimension = 1 # Dimensions Arc #14 Arc Dimension
self.centralWidget = QtGui.QWidget(MainWindow)
global EllipseDimension ;EllipseDimension = 1 # Dimensions Ellipse #15 Ellipse Dimension
self.centralWidget.setObjectName(_fromUtf8("centralWidget"))
global EllipsePartDimension ;EllipsePartDimension = 1 # Dimensions Ellipse Part #16 Ellipse Part Dimension
self.label = QtGui.QLabel(self.centralWidget)
global PolygonDimension ;PolygonDimension = 1 # Dimensions Polygon #17 Polygon Dimension
self.label.setGeometry(QtCore.QRect(10, 10, 400, 400)) # positionne le label
global RectangleDimension ;RectangleDimension = 1 # Dimensions Rectangle #18 Rectangle Dimension
self.label.setObjectName(_fromUtf8("label"))
global BSplineDimension ;BSplineDimension = 1 # Dimensions BSpline #19 BSpline Dimension
global PointDimension ;PointDimension = 1 # Dimensions Point #20 Point Dimension
global BezCurveDimension ;BezCurveDimension = 1 # Dimensions BezCurve #21 BezCurve Dimension


## Solid
MainWindow.setCentralWidget(self.centralWidget)
global CylinderDimension ;CylinderDimension = 1 # Dimensions du Cylindre Rayon Hauteur Angle #22 Cylinder Dimension
global BoxDimension ;BoxDimension = 1 # Dimensions du Box Length Width Height #23 Box Dimension
self.retranslateUi(MainWindow)
global SphereDimension ;SphereDimension = 1 # Dimensions de la Sphere #24 Sphere Dimension
# self.PBQuit.setText("Quit")
global EllipsoidDimension ;EllipsoidDimension = 1 # Dimensions Ellipsoid #25 Ellipsoid Dimension
global ConeDimension ;ConeDimension = 1 # Dimensions du Cone #26 Cone Dimension
global TorusDimension ;TorusDimension = 1 # Dimensions du Tore #27 Torus Dimension


## Part
def retranslateUi(self, MainWindow):
global PlanePartDimension ;PlanePartDimension = 1 # Dimensions Plan Part #28 Plane Part Dimension
MainWindow.setWindowTitle("Dialog")
global PrismPartDimension ;PrismPartDimension = 1 # Dimensions Prisme Part #29 Prism Part Dimension
# self.PBQuit.setText("Quit")
global WedgePartDimension ;WedgePartDimension = 1 # Dimensions Wedge Part #30 Wedge Part Dimension
self.label.setText("")
global HelixPartDimension ;HelixPartDimension = 1 # Dimensions Helix Part #31 Helix Part Dimension
global SpiralPartDimension ;SpiralPartDimension = 1 # Dimensions Spirale Part #32 Spiral Part Dimension
global VertexPartDimensio ;VertexPartDimension = 1 # Dimensions Vertex Part #33 Vertex Part Dimension
global LinePartDimension ;LinePartDimension = 1 # Dimensions Line Part #34 Line Part Dimension
global RegularPolygonPartDimension;RegularPolygonPartDimension = 1 # Dimensions RegularPolygon Part #35 Regular Polygon Part Dimension


## Face
def on_pushButton_Raf_clicked(self): # affiche le texte concatebe dans la fenetre
global FaceSurface ;FaceSurface = 1 # Surface de la face #36 Face Surface
global texteInfo
global NormalAt ;NormalAt = 1 # Donne la normale (inclinaison) #37 normalAt(0,0) Face and edges normalAt(0)
self.label.setText(texteInfo + "\n")
global FaceCenter ;FaceCenter = 1 # Center Face (mass) #38 Face Center
global BoundBoxFaceVol ;BoundBoxFaceVol = 1 # BoundBoxFace Volume #39 BoundBox Face Volume
global BoundBoxFaceCent ;BoundBoxFaceCent = 1 # BoundBoxFaceCenter #40 BoundBox Face Center
global BoundBoxFaceCoor ;BoundBoxFaceCoor = 1 # BoundBoxFace coordinates #41 BoundBox Face Coordinates


## Volume
# def on_PBQuit(self):
global BounBoxVolumeVol ;BounBoxVolumeVol = 1 # rectangle du BoundBox #42 BounBox Volume Volume
# App.Console.PrintMessage(str("Fin FCTransparencyInfo ")+"\n")
global BounBoxVolumeCent ;BounBoxVolumeCent = 1 # centre de la forme #43 BounBox Volume Center
# self.window.hide()
global BounBoxVolumeCoor ;BounBoxVolumeCoor = 1 # boundinbox (dimensions hors tout) #44 BounBox Volume Coordinates
global VolumeObject ;VolumeObject = 1 # volume #45 Volume Object
global CenterMass ;CenterMass = 1 # centre de la masse #46 Center Mass object
global PlacementForme ;PlacementForme = 1 # placement de la forme #47 Placement Forme
global LineInclination ;LineInclination = 1 # search inclination XY YZ ZX uniquement lignes #48 Line Inclination
global VertexesObject ;VertexesObject = 1 # Vertexes de l'objet selectionne #49 Vertexes Object
global VertexesForme ;VertexesForme = 0 # Vertexes complet de la forme #50 Vertexes Forme
# peut prendre du temps, depasser la fenetre et donner des donnees incompletes
# can take time and exceed the window and give data's incompletes
### End Section Switch #######################################################################################################################
}}
<translate>


<!--T:7-->
class SelObserver:
After a change save the macro and run
def addSelection(self,document, object, element, position): # Selection
global texteInfo


<!--T:33-->
texteInfo = ""
It is not possible at the moment to leave the function from the macro or scrolling
arondi = 5
def Around(a) :
return round(a,arondi)
sel = FreeCADGui.Selection.getSelection()
try:
Object = Gui.Selection.getSelectionEx()[0].SubObjects[0]
except:
None


<!--T:8-->
# Nom du document
One mouse click on the object display the information of the object, two mouse click select the object complete and displayed alls informations
try:
App.Console.PrintMessage("Document name : "+str(FreeCAD.activeDocument().Name)+"\n")
texteInfo += "Document name : "+str(FreeCAD.activeDocument().Name)+"\n"
except:
None
# Label
try:
# object_Label = sel[0].Label
App.Console.PrintMessage("Label name : "+str(sel[0].Label)+"\n")
texteInfo += "Label name : "+str(sel[0].Label)+"\n"
except:
None


<!--T:9-->
# Nom interne de l'objet
'''PS:''' It is also possible that in the Linux environment it is not possible to click or have access to the object within the window displaying the information
try:
# object_Name = sel[0].Name
App.Console.PrintMessage("Object name : "+str(sel[0].Name)+"\n")
texteInfo += "Object name : "+str(sel[0].Name)+"\n"
except:
None


<!--T:38-->
# Nom de l'élément
There are no problems in the Windows environment you can click inside the window and access to the object except the displayed characters
try:
SubElement = FreeCADGui.Selection.getSelectionEx()
element_ = SubElement[0].SubElementNames[0]
App.Console.PrintMessage("Element name : "+str(element_)+"\n")
texteInfo += "Element name : "+str(element_)+"\n"
except:
None


<!--T:39-->
# Type d'objet
this window to view and modify the dimensions, change:
try:
typeObject = sel[0].Shape.ShapeType
App.Console.PrintMessage("Object type : "+typeObject+"\n")
texteInfo += "Object type : "+typeObject+"\n"
except:
None


<!--T:40-->
# longueur Objet
'''visualiserWindow line 81 = 1'''
try:
App.Console.PrintMessage("Object lenght : "+str(Gui.Selection.getSelectionEx()[0].SubObjects[0].Length)+"\n")
texteInfo += "Object lenght : "+str(Gui.Selection.getSelectionEx()[0].SubObjects[0].Length)+"\n"
except:
None


<!--T:41-->
# Surface de la face
the '''lines 87 and 88 and SizeX SizeY''' for window dimensions
try:
App.Console.PrintMessage("Face area : "+str(Gui.Selection.getSelectionEx()[0].SubObjects[0].Area)+"\n")
texteInfo += "Face area : "+str(Gui.Selection.getSelectionEx()[0].SubObjects[0].Area)+"\n"
except:
None


==Script== <!--T:45-->
# Center Face (mass)
try:
det = Gui.Selection.getSelectionEx()[0].SubObjects[0].CenterOfMass
App.Console.PrintMessage("Face center : "+str(det[0])+", "+str(det[1])+", "+str(det[2])+"\n") # Vector center mass to face
texteInfo += "Face center : "+str(det[0])+", "+str(det[1])+", "+str(det[2])+"\n"
except:
None


<!--T:10-->
######Cas d'une forme############################################################
The icon '''Macro_FCInfoGlass.FCMacro''' [[File:Macro_FCInfoGlass.png|64px|FCInfoGlass]]
# volume
try:
App.Console.PrintMessage("Volume : "+str(sel[0].Shape.Volume)+"\n")
texteInfo += "Volume : "+str(sel[0].Shape.Volume)+"\n"
except:
None


<!--T:34-->
# rectangle du BoundBox
Copy the script on Gits [https://gist.github.com/mario52a/553b1fc7a8ca5bfa44c6 '''Macro_FCInfoGlass.FCMacro''']
# try:
App.Console.PrintMessage("BoundBox Rect : "+str(sel[0].Shape.BoundBox.XLength)+" x "+str(sel[0].Shape.BoundBox.YLength)+" x "+str(sel[0].Shape.BoundBox.ZLength)+"\r\n")
texteInfo += "BoundBox Rect : "+str(sel[0].Shape.BoundBox.XLength)+" x "+str(sel[0].Shape.BoundBox.YLength)+" x "+str(sel[0].Shape.BoundBox.ZLength)+"\r\n"
# except:
# None


<!--T:35-->
# boundinbox (dimensions hors tout)
and copy the Macro_FCInfoGlass.FCMacro and the icon in your macro directory.
try:
App.Console.PrintMessage("BoundBox Coor : "+str(sel[0].Shape.BoundBox)+"\n")
texteInfo += "BoundBox Coor : "+str(sel[0].Shape.BoundBox)+"\n"
except:
None


==Links== <!--T:46-->
# centre de la forme
try:
det = sel[0].Shape.BoundBox.Center
App.Console.PrintMessage("BounCenter : "+str(det[0])+", "+str(det[1])+", "+str(det[2])+"\n")
texteInfo += "BounCenter : "+str(det[0])+", "+str(det[1])+", "+str(det[2])+"\n"
except:
None


<!--T:11-->
# centre de la masse
The discussion on the forum [http://forum.freecadweb.org/viewtopic.php?f=8&t=6005 FCInfo Macro]
try:
App.Console.PrintMessage("CenterMass : "+str(sel[0].Solids[0].CenterOfMass)+"\n")
texteInfo += "CenterMass : "+str(sel[0].Solids[0].CenterOfMass)+"\n"
except:
None


<!--T:36-->
# Vertexes de l'objet
My macros on [https://gist.github.com/mario52a mario52a ] gists
try:
a = Gui.Selection.getSelectionEx()[0].SubObjects[0].Vertexes
aa = 0
for a0 in range(len(a)):
aa += 1
App.Console.PrintMessage("Vertexes Obj : X"+str(aa)+": "+str(a[a0].Point.x)+", Y"+str(aa)+ ": "+str(a[a0].Point.y)+", Z"+str(aa)+ ": "+str(a[a0].Point.z)+"\n")
texteInfo += "Vertexes Obj : X"+str(aa)+": "+str(a[a0].Point.x)+", Y"+str(aa)+ ": "+str(a[a0].Point.y)+", Z"+str(aa)+ ": "+str(a[a0].Point.z)+"\n"
except:
# Vertexes de la forme
try:
compt_E = 0
perimetre = 0.0
for j in enumerate(sel[0].Shape.Edges):
compt_E+=1
perimetre += (sel[0].Shape.Edges[compt_E-1].Length)
a = sel[0].Shape.Edges[compt_E-1].Vertexes[0]
App.Console.PrintMessage("Vertexes Form : "+"X1: "+str(a.Point.x)+" Y1: "+str(a.Point.y)+" Z1: "+str(a.Point.z)+"\n")
texteInfo += "Vertexes Form : "+"X1: "+str(a.Point.x)+" Y1: "+str(a.Point.y)+" Z1: "+str(a.Point.z)+"\n"
a = sel[0].Shape.Edges[compt_E-1].Vertexes[1]
App.Console.PrintMessage(" : "+"X2: "+str(a.Point.x)+" Y2: "+str(a.Point.y)+" Z2: "+str(a.Point.z)+"\n")
texteInfo += " : "+"X2: "+str(a.Point.x)+" Y2: "+str(a.Point.y)+" Z2: "+str(a.Point.z)+"\n"
App.Console.PrintMessage("Perimeter : "+str(perimetre)+"\n")
texteInfo += "Perimeter : "+str(perimetre)+"\n"
except:
None
None


==Version== <!--T:12-->
ff = ui
ff.on_pushButton_Raf_clicked()


<!--T:42-->
App.Console.PrintMessage("End_____________________________________________________________"+"\n")
'''28/08/2016 Ver 00.05''' : add radius with subObjects and center coordinates


<!--T:13-->
s=SelObserver()
'''25/11/2015 Ver 0.04''' : add radius with subObjects and normalAT(0,0)
FreeCADGui.Selection.addObserver(s) # installe la fonction en mode résident


<!--T:37-->
MainWindow = QtGui.QMainWindow()
'''31/08/2015 Ver 0.03''' : add many informations
ui = Ui_MainWindow()
ui.setupUi(MainWindow)


<!--T:18-->
MainWindow.show()
'''04/08/2015 Ver 0.02''' : add switch and presentation




</syntaxhighlight>
<translate>
===Links===
</translate>
</translate>
[http://forum.freecadweb.org/viewtopic.php?f=8&t=6005 FCInfo Macro]
<translate>
===Version===

Prototype not finished
</translate>
<languages/>

Latest revision as of 21:42, 28 December 2023

Other languages:

Macro FCInfoGlass

Description
Gives a series of information on the form display in the 3D view.

Macro version: 00.05
Last modified: 2016-08-28
Download: ToolBar Icon
Author: Mario52
Author
Mario52
Download
ToolBar Icon
Links
Macro Version
00.05
Date last modified
2016-08-28
FreeCAD Version(s)
None
Default shortcut
None
See also
Arch Survey

Description

Gives a series of informations about the selected shape and can display a directly in the 3D view

Temporary code for external macro link. Do not use this code. This code is used exclusively by Addon Manager. Link for optional manual installation: Macro


# This code is copied instead of the original macro code
# to guide the user to the online download page.
# Use it if the code of the macro is larger than 64 KB and cannot be included in the wiki
# or if the RAW code URL is somewhere else in the wiki.

from PySide import QtGui, QtCore

diag = QtGui.QMessageBox(QtGui.QMessageBox.Information,
    "Information",
    "This macro must be downloaded from this link\n"
    "\n"
    "https://gist.githubusercontent.com/mario52a/553b1fc7a8ca5bfa44c6/raw/fc57ec0869a8f68ce396acbaed5e87f396426186/Macro_FCInfoGlass.FCMacro" + "\n"
    "\n"
    "Quit this window to access the download page")

diag.setWindowFlags(QtCore.Qt.WindowStaysOnTopHint)
diag.setWindowModality(QtCore.Qt.ApplicationModal)
diag.exec_()

import webbrowser 
webbrowser.open("https://gist.githubusercontent.com/mario52a/553b1fc7a8ca5bfa44c6/raw/fc57ec0869a8f68ce396acbaed5e87f396426186/Macro_FCInfoGlass.FCMacro")


FCInfoGlass

Utilisation

Select an object or launch the application and select an object, and a series of informations appear on the 3D View.

Modify this line to move the data display in the screen (lines 84, 85)

global posiX                 ; posiX                           = 900  # position window coordinate X                   "defaut  = 900"
global posiY                 ; posiY                           = 190  # position window coordinate Y                   "defaut  = 190"
  • 900, 190 = position X, Y upper left corner

Modify this line for change color (line 92)

#######################################################################
# Section color                                                       #
global colorize              ; colorize                      ="black" # colorize the text choice                       "defaut  = "black"
                                                                      # "black" "white" "red" "green" "blue" "yellow" "magenta" "cyan"

Examples:

Availlable : "black" "white" "red" "green" "blue" "yellow" "magenta" "cyan"

This section hare switch give value 1 for displayed the info or 0 for not displayed the info

Example:

is displayed ( = 1 )

global LabelObject     ;LabelObject      = 1 # Label                                          #3  Label Object

is not displayed ( = 0 )

global LabelObject     ;LabelObject      = 0 # Label                                          #3  Label Object

The section lines 79 to 171

#######################################################################
global visualiserWindow      ; visualiserWindow                = 0    # si visualiserWindow = 1 la fenetre est visible (pour test)  "defaut  = 0"
                                                                      # if visualiserWindow = 1 the windows is visible (for test)   "default = 0"
###Section Configuration ##############################################
# Placement window hidden                                             #
global posiX                 ; posiX                           = 900  # position window coordinate X                   "defaut  = 900"
global posiY                 ; posiY                           = 190  # position window coordinate Y                   "defaut  = 190"
#######################################################################
global SizeX                 ; SizeX                           = 600  # size window length  (do not modify)            "defaut  = 600"
global SizeY                 ; SizeY                           = 600  # size window heigth  (do not modify)            "defaut  = 600"


#######################################################################
# Section color                                                       #
global colorize              ; colorize                      ="black" # colorize the text choice                       "defaut  = "black"
                                                                      # "black" "white" "red" "green" "blue" "yellow" "magenta" "cyan"


#######################################################################
# Section inter                                                       #
global mode                  ; mode                            = 1    # mode 1=degrees mode 0=radians                  "defaut  = 1"
global arondi                ; arondi                          = 4    # many numbers after the decimal point           "defaut  = 4" 
global chaineRemplacement    ; chaineRemplacement              = "_"  # replacement string (1 character)               "defaut  = "_"


#######################################################################
# section switch 
# if switch = 1 then actif (True Displayed) else inactif (False not Displayed)
global PrintReportView       ;PrintReportView                  = 1    # Affichage dans la vue rapport                  #0  Displayed ReportView
## 
global DocumentName          ;DocumentName                     = 1    # Nom du document                                #1  Document Name
global InternalName          ;InternalName                     = 1    # Nom interne de l'objet                         #2  Internal Name
global LabelObject           ;LabelObject                      = 1    # Label                                          #3  Label Object
global ElementName           ;ElementName                      = 1    # Nom de l'element                               #4  Element Name
global ObjectType            ;ObjectType                       = 1    # Type d'objet                                   #5  Object Type
global LineSeparateTitle     ;LineSeparateTitle                = 1    # ligne de separation des titres ____________    #6  Line Separate of Title

## Object subObject 
global ObjectLength          ;ObjectLength                     = 1    # longueur Objet ou perimetre si c est une face  #7  Object Length or perimetre if are a face
global ObjectCurveRadius     ;ObjectCurveRadius                = 1    # rayon du subObject si arc ou cerle             #8  radius subObject if arc or cirle
global ObjectCurveCenter     ;ObjectCurveCenter                = 1    # coordonnees centrale subObject si arc ou cerle #9  coordinates center subObject if arc or cirle

## Draft
global LineDimension         ;LineDimension                    = 1    # Dimensions Line                                #10  Line Dimension
global DWireDimension        ;DWireDimension                   = 1    # Dimensions DWire                               #11  DWire Dimension
global CircleDimension       ;CircleDimension                  = 1    # Dimensions Circle                              #12 Circle Dimension
global CirclePartDimension   ;CirclePartDimension              = 1    # Dimensions Circle Part                         #13 Circle Part Dimension

global ArcDimension          ;ArcDimension                     = 1    # Dimensions Arc                                 #14 Arc Dimension
global EllipseDimension      ;EllipseDimension                 = 1    # Dimensions Ellipse                             #15 Ellipse Dimension
global EllipsePartDimension  ;EllipsePartDimension             = 1    # Dimensions Ellipse Part                        #16 Ellipse Part Dimension
global PolygonDimension      ;PolygonDimension                 = 1    # Dimensions Polygon                             #17 Polygon Dimension
global RectangleDimension    ;RectangleDimension               = 1    # Dimensions Rectangle                           #18 Rectangle Dimension
global BSplineDimension      ;BSplineDimension                 = 1    # Dimensions BSpline                             #19 BSpline Dimension
global PointDimension        ;PointDimension                   = 1    # Dimensions Point                               #20 Point Dimension
global BezCurveDimension     ;BezCurveDimension                = 1    # Dimensions BezCurve                            #21 BezCurve Dimension

## Solid
global CylinderDimension     ;CylinderDimension                = 1    # Dimensions du Cylindre Rayon Hauteur Angle     #22 Cylinder Dimension
global BoxDimension          ;BoxDimension                     = 1    # Dimensions du Box Length Width Height          #23 Box Dimension
global SphereDimension       ;SphereDimension                  = 1    # Dimensions de la Sphere                        #24 Sphere Dimension
global EllipsoidDimension    ;EllipsoidDimension               = 1    # Dimensions Ellipsoid                           #25 Ellipsoid Dimension
global ConeDimension         ;ConeDimension                    = 1    # Dimensions du Cone                             #26 Cone Dimension
global TorusDimension        ;TorusDimension                   = 1    # Dimensions du Tore                             #27 Torus Dimension

## Part
global PlanePartDimension    ;PlanePartDimension               = 1    # Dimensions Plan Part                           #28 Plane Part Dimension
global PrismPartDimension    ;PrismPartDimension               = 1    # Dimensions Prisme Part                         #29 Prism Part Dimension   
global WedgePartDimension    ;WedgePartDimension               = 1    # Dimensions Wedge Part                          #30 Wedge Part Dimension
global HelixPartDimension    ;HelixPartDimension               = 1    # Dimensions Helix Part                          #31 Helix Part Dimension
global SpiralPartDimension   ;SpiralPartDimension              = 1    # Dimensions Spirale Part                        #32 Spiral Part Dimension
global VertexPartDimensio    ;VertexPartDimension              = 1    # Dimensions Vertex Part                         #33 Vertex Part Dimension
global LinePartDimension     ;LinePartDimension                = 1    # Dimensions Line Part                           #34 Line Part Dimension
global RegularPolygonPartDimension;RegularPolygonPartDimension = 1    # Dimensions RegularPolygon Part                 #35 Regular Polygon Part Dimension

## Face
global FaceSurface           ;FaceSurface                      = 1    # Surface de la face                             #36 Face Surface
global NormalAt              ;NormalAt                         = 1    # Donne la normale (inclinaison)                 #37 normalAt(0,0) Face and edges normalAt(0)
global FaceCenter            ;FaceCenter                       = 1    # Center Face (mass)                             #38 Face Center
global BoundBoxFaceVol       ;BoundBoxFaceVol                  = 1    # BoundBoxFace Volume                            #39 BoundBox Face Volume
global BoundBoxFaceCent      ;BoundBoxFaceCent                 = 1    # BoundBoxFaceCenter                             #40 BoundBox Face Center
global BoundBoxFaceCoor      ;BoundBoxFaceCoor                 = 1    # BoundBoxFace coordinates                       #41 BoundBox Face Coordinates

## Volume
global BounBoxVolumeVol      ;BounBoxVolumeVol                 = 1    # rectangle du BoundBox                          #42 BounBox Volume Volume
global BounBoxVolumeCent     ;BounBoxVolumeCent                = 1    # centre de la forme                             #43 BounBox Volume Center
global BounBoxVolumeCoor     ;BounBoxVolumeCoor                = 1    # boundinbox (dimensions hors tout)              #44 BounBox Volume Coordinates
global VolumeObject          ;VolumeObject                     = 1    # volume                                         #45 Volume Object
global CenterMass            ;CenterMass                       = 1    # centre de la masse                             #46 Center Mass object
global PlacementForme        ;PlacementForme                   = 1    # placement de la forme                          #47 Placement Forme
global LineInclination       ;LineInclination                  = 1    # search inclination XY YZ ZX uniquement lignes  #48 Line Inclination
global VertexesObject        ;VertexesObject                   = 1    # Vertexes de l'objet selectionne                #49 Vertexes Object
global VertexesForme         ;VertexesForme                    = 0    # Vertexes complet de la forme                   #50 Vertexes Forme
                                                                      # peut prendre du temps, depasser la fenetre et donner des donnees incompletes
                                                                      # can take time and exceed the window and give data's incompletes
### End Section Switch #######################################################################################################################

After a change save the macro and run

It is not possible at the moment to leave the function from the macro or scrolling

One mouse click on the object display the information of the object, two mouse click select the object complete and displayed alls informations

PS: It is also possible that in the Linux environment it is not possible to click or have access to the object within the window displaying the information

There are no problems in the Windows environment you can click inside the window and access to the object except the displayed characters

this window to view and modify the dimensions, change:

visualiserWindow line 81 = 1

the lines 87 and 88 and SizeX SizeY for window dimensions

Script

The icon Macro_FCInfoGlass.FCMacro FCInfoGlass

Copy the script on Gits Macro_FCInfoGlass.FCMacro

and copy the Macro_FCInfoGlass.FCMacro and the icon in your macro directory.

Links

The discussion on the forum FCInfo Macro

My macros on mario52a gists

Version

28/08/2016 Ver 00.05 : add radius with subObjects and center coordinates

25/11/2015 Ver 0.04 : add radius with subObjects and normalAT(0,0)

31/08/2015 Ver 0.03 : add many informations

04/08/2015 Ver 0.02 : add switch and presentation