In ACAD kann man eine Fläche eines Körpers wählen und die Flächenneigung dieser Fläche ändern.
(Angabe der Drehachse und Winkel)
Geht das auch in FreeCad?
Trying to achieve: I have a Dialog with some buttons. Every Button should show an explaining picture (always in the same label). On the whole, the pictures are relative similar. the differences I lied on different layers and can be shown by switching the layers. This works now by manipulating the sv...
Firstly the code to manipulate the svg-file: import xml.etree.ElementTree as ET what = ..... svg # Path and filename tree=ET.parse(what) #Also possible: tree=ET.fromstring(svg - code) root=tree.getroot() for ding in root.iter('{http://www.w3.org/2000/svg}g'): #print(ding.attrib, ding.get('style')) d...
Hi I have a dialog (created with QT) with svg graphics (created with Inkscape), the grahics are integrated by styleSheet-property of an label. Pressing various buttons in the dialog box also changes the used SVG files. But: I don't want to use a lot of SVG files, I want to draw everything in one fil...
Hi I have a non-modal dialog, made with QT. When I run it, it appears as I wanted it, but when I switch to another document, the dialog is still visible (also if I switch to the macro-Editor). It should only be visible in the document, where I called it. import PySide from PySide import QtGui ,QtCor...
I tried same, but instead of AnnotationLabel this: sg = Gui.ActiveDocument.ActiveView.getSceneGraph() ... te = coin.SoText2() ... Same result, it crashed And the error is a little different: Unhandled Base::Exception caught in GUIApplication::notify. The error message is: Access violation Unhandled ...
Hi Following code causes crash of FreeCAD(0.18), when line with removeObject is executed - Therefore I have it commented: (This is not the "real" code - I extracted it to show the problem.) objectAnn=None import DraftSnap class Ui_Dialog: def start(): snapit(0) def cb(point): print("cb called by Sna...
Hi For example: I have two cubes (grey, red) and want to draw a line(red) from an vertex of the first cube to a vertex of the second cube. To do this, I want to split the view into two parts, in the left part should be shown the first cube, in the right part the second cube. The start of the line sh...