Search found 213 matches

by Luixx
Fri Jan 12, 2024 6:24 pm
Forum: Help on using FreeCAD
Topic: SheetMetal Error save to file with CTRL+S
Replies: 1
Views: 1240

SheetMetal Error save to file with CTRL+S

My error from saving file. My project two body. OS: KDE Flatpak runtime (ubuntu:GNOME/ubuntu-wayland) Word size of FreeCAD: 64-bit Version: 0.21.2.33771 (Git) Build type: Release Branch: (HEAD detached at b9bfa5c) Hash: b9bfa5c5507506e4515816414cd27f4851d00489 Python 3.10.13, Qt 5.15.10, Coin 4.0.0,...
by Luixx
Wed Sep 27, 2023 7:24 pm
Forum: Forum Italiano
Topic: problema di misure in part small mm
Replies: 4
Views: 5548

Re: problema di misure in part small mm

grazie mille ora mi metto allo studio .. ho anche io scaricato la 22.dev molto bella..

ora mi salvo il tuo filmato e provo ad vedere se mi riesce.

ti ringrazio moltissimo e buon fine settimana.
by Luixx
Tue Sep 26, 2023 11:44 am
Forum: Forum Italiano
Topic: problema di misure in part small mm
Replies: 4
Views: 5548

Re: problema di misure in part small mm

si vero.. forse ho fatto un po' di casino e ho tolto qualcosa..

Mi protesti fare un video .. perché non riesco ad replicare la tua versione con solo pochi passaggi.

Scusa del ritardo.. ma non potevo usare il computer.

ti ringrazio molto.
by Luixx
Sun Sep 24, 2023 7:37 pm
Forum: Forum Italiano
Topic: problema di misure in part small mm
Replies: 4
Views: 5548

problema di misure in part small mm

Salve, possibile che sbaglio io ho freecad quando esporto in stl con mesh design? Allego tutto. prove.stl 00.FCStd Non so che sbaglio io.. forse per colpa dello spessore. Dovrebbe venire fuori 100x30x15 Ma in cura mi viene 102x32,18mm OS: Windows 11 build 22621 Word size of FreeCAD: 64-bit Version: ...
by Luixx
Fri Dec 09, 2022 6:19 pm
Forum: Help on using FreeCAD
Topic: FreeCAD version Windows Error output
Replies: 1
Views: 381

FreeCAD version Windows Error output

OS: Windows 10 Version 2009 Word size of FreeCAD: 64-bit Version: 0.20.1.29410 (Git) Build type: Release Branch: releases/FreeCAD-0-20 Hash: f5d13554ecc7a456fb6e970568ae5c74ba727563 Python 3.8.10, Qt 5.15.2, Coin 4.0.1, Vtk 8.2.0, OCC 7.6.3 Locale: Italian/Italy (it_IT) Installed mods: * A2plus 0.4...
by Luixx
Fri Dec 09, 2022 5:34 pm
Forum: Help on using FreeCAD
Topic: FreeCAD from openscad - Error generate scripts
Replies: 1
Views: 317

FreeCAD from openscad - Error generate scripts

My example : cube(2); error output: 18:31:18 WARNING: Token 'DOT' defined, but not used 18:31:18 WARNING: Token 'WORD' defined, but not used 18:31:18 WARNING: There are 2 unused tokens 18:31:18 End processing CSG file Senza titolo.jpg OS: Windows 10 Version 2009 Word size of FreeCAD: 64-bit Version:...
by Luixx
Sat Jul 23, 2022 12:06 pm
Forum: Python scripting and macros
Topic: Impostare visual studio code per lavorare con le api di freecad
Replies: 1
Views: 1268

Impostare visual studio code per lavorare con le api di freecad

Ciao, vorrei sapere come fare ad aggiungere ad visual studio code i path per freecad versione flatpak. Allego screenshot. Screenshot from 2022-07-23 14-03-28.png Grazie. PS: for english use google translator. Version ubuntu 22.04 LTS 64 bit. My computer : Lenovo ideapad Gaming 3 - Ryzen 5 4600h 8/16...
by Luixx
Wed Jul 06, 2022 2:55 pm
Forum: Python scripting and macros
Topic: [solved problem] Script crash freecad 0.20
Replies: 11
Views: 1555

Re: Script crash freecad 0.20

Upload github experimental - my studing github. Link: https://github.com/luigi-amorfini/la_freecad installed %AppData%/FreeCAD/Mod/ use macro test experiment. from la_freecad import * length, width, height = 250, 80, 40 box1 = Cube("cubo1") print("init box") box1.create(length, w...
by Luixx
Wed Jul 06, 2022 12:49 pm
Forum: Python scripting and macros
Topic: [solved problem] Script crash freecad 0.20
Replies: 11
Views: 1555

Re: Script crash freecad 0.20

ok, my solution: import FreeCADGui import FreeCAD from FreeCAD import Base import Part import math class Bolt: def __init__(self, obj, name): self.name = name # Add some custom properties to the feature obj.addProperty("App::PropertyString","name","Bolt","Nome"...
by Luixx
Sun Jul 03, 2022 4:32 pm
Forum: Python scripting and macros
Topic: [solved problem] Script crash freecad 0.20
Replies: 11
Views: 1555

[solved problem] Script crash freecad 0.20

Hi, my code experimental bolt .. my hobby prorgramming. My code: # -*- coding: utf-8 -*- import FreeCADGui import FreeCAD from FreeCAD import Base import Part import math class Bolt: def __init__(self, name): self.name = name self.obj = None def makeBolt(self): bolt=FreeCAD.ActiveDocument.addObject(...