Search found 3104 matches

by ickby
Tue Oct 21, 2014 12:10 pm
Forum: Python scripting and macros
Topic: Drawing an arc in the sketcher module
Replies: 5
Views: 1691

Re: Drawing an arc in the sketcher module

Hello,

I recomend this wiki page: http://www.freecadweb.org/wiki/index.ph ... _scripting

it shows a simplified method to your approach (actual just a shortcut for it):

Code: Select all

Part.show(P)
by ickby
Mon Oct 20, 2014 2:07 pm
Forum: Forum in Deutsch
Topic: dwg/dxf öffnen
Replies: 8
Views: 11205

Re: dwg/dxf öffnen

Bei mir funktioniert das DXF. Hast du es einmal mit dem "Inhalt auf bildgröße einpassen" Knopf versucht? Er stellt sicher das alle elemente auch sichtbar sind und nicht zufälig der Zoomfaktor sie Verschwinden lässt. (in der cyan farbenen "view" toolbar ganz links) EDIT: Ich vermu...
by ickby
Mon Oct 20, 2014 11:52 am
Forum: Python scripting and macros
Topic: make Part ellipse -> make face of it -> extrude
Replies: 4
Views: 1941

Re: make Part ellipse -> make face of it -> extrude

or a bit more expressive :)

Code: Select all

edge = Part.Edge(myEll)
wire = Part.Wire(edge)
face = Part.Face(wire)
solid = face.extrude(Base.Vector(0,0,10))
by ickby
Sat Oct 18, 2014 8:06 pm
Forum: Help on using FreeCAD
Topic: Rotate a model
Replies: 6
Views: 2370

Re: Rotate a model

the rotations axis describes the vector around which the rotation is done. http://en.wikipedia.org/wiki/Axis–angle_representation If you set the vector but the angle property is still 0 no rotation will be done. What you need to do is to set the vector (xyz) to (0,1,0) and angle to 90° or whatever y...
by ickby
Sat Oct 18, 2014 2:18 pm
Forum: Help on using FreeCAD
Topic: Crash in "sweep part"
Replies: 9
Views: 1897

Re: Crash in "sweep part"

I can reproduce the crash, that should definitely not happen. Would be good if you could report this on the bugtracker so that it is lost. Annother part of the story is that you miss misunderstood the purpose of multiple profiles. That functionality is not the same as making two independend sweeps a...
by ickby
Sat Oct 18, 2014 12:15 pm
Forum: Help on using FreeCAD
Topic: Sweep part
Replies: 21
Views: 4122

Re: Sweep part

This video gives some insight in how it is supposed to work. https://www.youtube.com/watch?v=7rk6nFuyLJ8
the version used does not have the sweep path button, but it should get clear how it is supposed to work.
by ickby
Sat Oct 18, 2014 11:49 am
Forum: Help on using FreeCAD
Topic: Sweep part
Replies: 21
Views: 4122

Re: Sweep part

What I tried to do: sweep 'Wire' along 'BezCurve' to create a nicely curved half pipe. That didn't do anything, using the Sweep function in the Parts workbench. Hm that works perfectly well, are you sure you use it correctly? Add the wire to the list you see when the tool opens and select the BezCu...
by ickby
Fri Oct 17, 2014 3:40 pm
Forum: Help on using FreeCAD
Topic: binary operation fails terribly
Replies: 10
Views: 2342

Re: Suspected bug: binary operation fails terribly

Your part Extrude005 has many errors, numerous self-intersections and too small edges. I suppose you're wire is flawed. But it is impossible to saw how that comes as it is not clear how the wire was done.
by ickby
Fri Oct 17, 2014 12:38 pm
Forum: Developers corner
Topic: new member
Replies: 12
Views: 3780

Re: new member

Hello, you find details about the assembly project here: http://www.freecadweb.org/wiki/index.php?title=Assembly_project This gives you a good overview of what needs to be considered. But IMHO working on architectural details is not possible at the moment. To fullfill all requirements this workbench...
by ickby
Fri Oct 17, 2014 5:43 am
Forum: Developers corner
Topic: Does soqt still need to be include with the libpack?
Replies: 2
Views: 781

Re: Does soqt still need to be include with the libpack?

I don't think so, there should be no refenrences in the code to soqt anymore.