User Tools

Site Tools


freecad

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
freecad [2023/09/12 17:20] – [Build sheets] do not necessarily delete sheets ssm2017freecad [2024/02/14 00:39] (current) ssm2017
Line 1: Line 1:
 ====== freecad ====== ====== freecad ======
 +===== blender 3 to freecad 19 =====
 + blender :
 +  obj
 +   include :
 +    selection only
 +    onjects as onj objects
 +   transform :
 +    scale 1000
 +    forward y forward
 +    up z up
 +    geometry :
 +    triangulate faces
 +
 + freecad :
 +  file / import
 +   alias mesh = 1 object
 +   wavefront obj = multiple objects
 +  select all
 +  part workbench :
 +   menu part / create shape from mesh
 +   tolerance : 0.10
 +   delete selection
 +   select all
 +   menu part / create a copy / refine shape
 +   select copied
 +   menu part / convert to solid
 +   delete others
 ====== Techdraw ====== ====== Techdraw ======
 Update cartridge Update cartridge
Line 108: Line 135:
  fixtures_count_sheet.Label = "Fixtures Count"  fixtures_count_sheet.Label = "Fixtures Count"
  App.Console.PrintMessage("New 'Fixtures Count' sheet created\n")  App.Console.PrintMessage("New 'Fixtures Count' sheet created\n")
- +# empty the sheet 
- # build first line +fixtures_count_sheet.clearAll() 
- fixtures_count_sheet.set("A1", "Type"+# build first line 
- fixtures_count_sheet.set("B1", "Qty"+fixtures_count_sheet.set("A1", "Type"
- fixtures_count_sheet.setStyle('A1:B1', 'bold', 'add'+fixtures_count_sheet.set("B1", "Qty"
- doc.recompute()+fixtures_count_sheet.setStyle('A1:B1', 'bold', 'add'
 +#doc.recompute()
  
 # gels list # gels list
Line 121: Line 149:
  gels_count_sheet.Label = "Gels Count"  gels_count_sheet.Label = "Gels Count"
  App.Console.PrintMessage("New 'Gels Count' sheet created\n")  App.Console.PrintMessage("New 'Gels Count' sheet created\n")
- +# empty the sheet 
- # build first line +gels_count_sheet.clearAll() 
- gels_count_sheet.set("A1", "Type"+# build first line 
- gels_count_sheet.set("B1", "Qty"+gels_count_sheet.set("A1", "Type"
- gels_count_sheet.setStyle('A1:B1', 'bold', 'add'+gels_count_sheet.set("B1", "Qty"
- doc.recompute()+gels_count_sheet.setStyle('A1:B1', 'bold', 'add'
 +#doc.recompute()
  
 # fixtures list by channel # fixtures list by channel
Line 134: Line 163:
  fixtures_list_by_channel_sheet.Label = "Fixtures List By Channel"  fixtures_list_by_channel_sheet.Label = "Fixtures List By Channel"
  App.Console.PrintMessage("New 'Fixtures List By Channel' sheet created\n")  App.Console.PrintMessage("New 'Fixtures List By Channel' sheet created\n")
- +# empty the sheet 
- # build first line +fixtures_list_by_channel_sheet.clearAll() 
- fixtures_list_by_channel_sheet.set("A1", "Channel"+# build first line 
- fixtures_list_by_channel_sheet.set("B1", "Dimmer"+fixtures_list_by_channel_sheet.set("A1", "Channel"
- fixtures_list_by_channel_sheet.set("C1", "Type"+fixtures_list_by_channel_sheet.set("B1", "Dimmer"
- fixtures_list_by_channel_sheet.set("D1", "Gel"+fixtures_list_by_channel_sheet.set("C1", "Type"
- fixtures_list_by_channel_sheet.set("E1", "Label"+fixtures_list_by_channel_sheet.set("D1", "Gel"
- fixtures_list_by_channel_sheet.setStyle('A1:E1', 'bold', 'add'+fixtures_list_by_channel_sheet.set("E1", "Label"
- doc.recompute()+fixtures_list_by_channel_sheet.setStyle('A1:E1', 'bold', 'add'
 +#doc.recompute()
  
 # fixtures list by dimmer # fixtures list by dimmer
Line 150: Line 180:
  fixtures_list_by_dimmer_sheet.Label = "Fixtures List By Dimmer"  fixtures_list_by_dimmer_sheet.Label = "Fixtures List By Dimmer"
  App.Console.PrintMessage("New 'Fixtures List By Dimmer' sheet created\n")  App.Console.PrintMessage("New 'Fixtures List By Dimmer' sheet created\n")
- +# empty the sheet 
- # build first line +fixtures_list_by_dimmer_sheet.clearAll() 
- fixtures_list_by_dimmer_sheet.set("A1", "Dimmer"+# build first line 
- fixtures_list_by_dimmer_sheet.set("B1", "Channel"+fixtures_list_by_dimmer_sheet.set("A1", "Dimmer"
- fixtures_list_by_dimmer_sheet.set("C1", "Type"+fixtures_list_by_dimmer_sheet.set("B1", "Channel"
- fixtures_list_by_dimmer_sheet.set("D1", "Gel"+fixtures_list_by_dimmer_sheet.set("C1", "Type"
- fixtures_list_by_dimmer_sheet.set("E1", "Label"+fixtures_list_by_dimmer_sheet.set("D1", "Gel"
- fixtures_list_by_dimmer_sheet.setStyle('A1:E1', 'bold', 'add'+fixtures_list_by_dimmer_sheet.set("E1", "Label"
- doc.recompute()+fixtures_list_by_dimmer_sheet.setStyle('A1:E1', 'bold', 'add'
 +doc.recompute()
  
 # ==================== # ====================
freecad.1694532001.txt.gz · Last modified: by ssm2017