FreeCAD Logo FreeCAD 1.0
  • English Afrikaans Arabic Belarusian Catalan Czech German Greek Spanish Spanish Basque Finnish Filipino French Galician Croatian Hungarian Indonesian Italian Japanese Kabyle Korean Lithuanian Dutch Norwegian Bokmal Polish Portuguese Portuguese Romanian Russian Slovak Slovenian Serbian Swedish Turkish Ukrainian Valencian Vietnamese Chinese Chinese
  • Features
  • Download
  • Blog
  • Documentation
    Documentation index Getting started Users documentation The FreeCAD manual Workbenches documentation Python coding documentation C++ coding documentation Tutorials Frequently asked questions Privacy policy About FreeCAD
  • Contribute
    How to help Sponsor Report a bug Make a pull request Jobs and funding Contribution guidelines Developers handbook Translations
  • Community
    Code of conduct Forum The FPA GitHub GitLab Codeberg Mastodon Matrix IRC IRC via Webchat Gitter Discord Reddit Twitter Facebook LinkedIn Calendar
  • ♥ Donate

Donate

$
SEPA Information
Please set up your SEPA bank transfer to:
Beneficiary: The FreeCAD project association
IBAN: BE04 0019 2896 4531
BIC/SWIFT: GEBABEBBXXX
Bank agency: BNP Paribas Fortis
Address: Rue de la Station 64, 1360 Perwez, Belgium

While Stripe doesn't support monthly donations, you can still become a sponsor! Simply make a one-time donation equivalent to 12 months of support, and you'll gain access to the corresponding sponsoring tier. It's an easy and flexible way to contribute.

If you are not sure or not able to commit to a regular donation, but still want to help the project, you can do a one-time donation, of any amount.

Choose freely the amount you wish to donate one time only.

You can support FreeCAD by sponsoring it as an individual or organization through various platforms. Sponsorship provides a steady income for developers, allowing the FPA to plan ahead and enabling greater investment in FreeCAD. To encourage sponsorship, we offer different tiers, and unless you choose to remain anonymous, your name or company logo will be featured on our website accordingly.

from 1 USD / 1 EUR per month. You will not have your name displayed here, but you will have helped the project a lot anyway. Together, normal sponsors maintain the project on its feet as much as the bigger sponsors.

from 25 USD / 25 EUR per month. Your name or company name is displayed on this page.

from 100 USD / 100 EUR per month. Your name or company name is displayed on this page, with a link to your website, and a one-line description text.

from 200 USD / 200 EUR per month. Your name or company name and logo displayed on this page, with a link to your website and a custom description text. Companies that have helped FreeCAD early on also appear under Gold sponsors.

Instead of donating each month, you might find it more comfortable to make a one-time donation that, when divided by twelve, would give you right to enter a sponsoring tier. Don't hesitate to do so!

Choose freely the amount you wish to donate each month.

Please inform your forum name or twitter handle as a notein your transfer, or reach to us, so we can give you proper credits!

Macro SimpleProperties

{{Macro |Name=SimpleProperties |Icon=Macro_SimpleProperties.png |Description=This macro gives simple properties of selected object (volume, boundbox, ...) |Author=OpenBrain |Date=2019-06-10 |Version=0.7 |FCVersion=0.17+ |Download=[https://www.freecadweb.org/wiki/https://raw.githubusercontent.com/FreeCAD/FreeCAD-documentation/master/wiki/images/d/da/Macro_SimpleProperties.png ToolBar Icon] |SeeAlso=Arch Survey, Macro FCInfo }}

Description

Context

This macro has been written mainly so user can access a quick & concise information about an object physical properties. This aims particularly at preparing object packaging & shipping.

Usage

Select an object and run the macro. It will display in a message box :

  • Object volume in liters
  • Object boundbox dimensions in millimeters
  • If object has been selected by clicking an edge, its length is displayed in millimeters
  • If object has been selected by clicking a face, its area is displayed in meter squares

Installation

The macro is available through Addon Manager. Code is provided on this page for convenience in case user system doesn\'t have git-python. Though it should be up-to-date, latest release is always available at FreeCAD-macro repository

For more detailed explanations, see the How to install macros page.

Script

Limitations

  • Only one object at a time

Code

ToolBar Icon

Macro_SimpleProperties.FCMacro

{{MacroCode|code=

!/usr/bin/python

#####################################

Copyright (c) openBrain 2019

Licensed under LGPL v2

This FreeCAD macro will give basic properties of the selected object (volume, boundbox, ...)

Version history :

*0.7 : some typo improvement + commenting

*0.6 : check if selected object has a valid shape

*0.5 : beta release

#####################################

Name = 'SimpleProperties' Comment = 'Gives basic properties of object (volume, boundbox, ...)' Author = 'openBrain' Version = '0.7' Date = '2019-06-10' License = 'LGPL v2' Web = 'https://www.freecadweb.org/wiki/Macro_SimpleProperties' Wiki = 'https://www.freecadweb.org/wiki/Macro_SimpleProperties' Icon = '' Help = 'Select an object and run the macro' Status = 'Beta' Requires = 'FreeCAD >= 0.17'

dbg = False #True for debugging SIGNUM = '%.3g' #Set the display format of numbers

from PySide import QtGui

def cslM(msg): #Print message in console FreeCAD.Console.PrintMessage('\n') FreeCAD.Console.PrintMessage(msg)

def cslW(msg): #Print warning in console FreeCAD.Console.PrintMessage('\n') FreeCAD.Console.PrintWarning(msg)

def cslE(msg): #Print error in console FreeCAD.Console.PrintMessage('\n') FreeCAD.Console.PrintError(msg)

def cslD(msg): #Print debug message in console if dbg: FreeCAD.Console.PrintMessage('\n') FreeCAD.Console.PrintMessage("Debug : " + str(msg))

if dbg: ##Clear report view in debug mode FreeCADGui.getMainWindow().findChild(QtGui.QTextEdit, "Report view").clear()

cslM("Starting Simple Properties macro")

if len(Gui.Selection.getSelection()) != 1: ##If not exactly one object selected, warn user & quit cslE("One and only one object shall be selected ... Exiting") elif not ("Shape" in Gui.Selection.getSelection()[0].PropertiesList): ##If selected object has no shape, warn user & exit cslE("Selected object has no valid shape ... Exiting") else: obj = Gui.Selection.getSelection()[0] #Get selected object retStr = "" if len(Gui.Selection.getSelectionEx()[0].SubObjects) != 1: #If several object subobjects have been selected, ignore & warn user cslW("No or several subobject(s) selected, will be ignored") else: objEx = Gui.Selection.getSelectionEx()[0].SubObjects[0] #If one subobject selected if isinstance(objEx, Part.Edge): ##If it's an edge, print its length retStr += "Edge length : " + '%s' % float(SIGNUM % (objEx.Length)) + " mm\n" elif isinstance(objEx, Part.Face): ##If it's a face, print its area retStr += "Face area : " + '%s' % float(SIGNUM % (objEx.Area/1000000)) + " m2\n" else: ##If other (unsupported) type, warn user cslD("Subobject type : " + str(objEx.ShapeType)) cslW("Unsupported type of subobject") retStr += "Object volume : " + '%s' % float(SIGNUM % (obj.Shape.Volume/1000000)) + " l\n" #Print object volume bb = obj.Shape.BoundBox #Get object boundbox retStr += "Object boundbox : " + '%s' % float(SIGNUM % (bb.XLength)) + " x " + '%s' % float(SIGNUM % (bb.YLength)) + " x " + '%s' % float(SIGNUM % (bb.ZLength)) + " mm" + "\n" #Print object boundbox dimensions QtGui.QMessageBox(QtGui.QMessageBox.Information, "Object Simple Props",retStr).exec_() #Display information in a message box cslM("End")

}}


⏵ documentation index > Macro SimpleProperties

This page is retrieved from https://github.com/FreeCAD/FreeCAD-documentation/blob/main/wiki/Macro_SimpleProperties.md

Get in touch!
Forum GitHub Mastodon Matrix IRC Gitter.im Discord Reddit Twitter Facebook LinkedIn

© The FreeCAD Team. Homepage image credits (top to bottom): ppemawm, r-frank, epileftric, regis, rider_mortagnais, bejant.

This project is supported by: , KiCad Services Corp. and other sponsors

GitHubImprove this page on GitHub