Matrix API

From FreeCAD Documentation
Revision as of 23:00, 15 November 2014 by FuzzyBot (talk | contribs) (Updating to match new version of source page)

4x4 Matrixes are used everywhere throughout FreeCAD and can be created by one of the following manners:

m=FreeCAD.Matrix()          # m = the [http://en.wikipedia.org/wiki/Identity_matrix identity matrix]
m=FreeCAD.Base.Matrix()
print m.A21()               # print m[1][0]


A( )

Description:

Returns: all the matrix elements.