Base API/es: Difference between revisions

From FreeCAD Documentation
(Updating to match new version of source page)
(Updating to match new version of source page)
 
(14 intermediate revisions by 3 users not shown)
Line 1: Line 1:
<languages/>
The Base module is contained inside the FreeCAD module and contains constructors for different types of objects heavily used in FreeCAD.
{{VeryImportantMessage|(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the [https://www.freecadweb.org/api autogenerated API documentation], or generate the documentation yourself, see [[Source documentation|Source documentation]].}}


El módulo Base está contenido en el módulo FreeCAD y contiene constructores para diferentes tipos de objetos ampliamente utilizados en FreeCAD.


{{APIClass|BoundBox|[Xmin,Ymin,Zmin,Xmax,Ymax,Zmax] ) o ( Tuple, Tuple ) o ( Vector, Vector|Crea una caja de abarque. Una caja de abarque es un cubo que sirve para describir los límites exteriores. Puedes obtener las cajas de abarque de un montón de tipos 3D. Se utiliza frecuentemente para verificar si una entidad 3D permanece en el rango de otro objeto. La comprobación inicial de interferencias de los límites puede ahorrar un montón de tiempo de cálculo!}}


{{APIClass|Matrix| |Crea una [[Matrix_API|Matriz]] 4x4, que puede ser utilizada para aplicar transformaciones a los objetos.}}
{{APIClass|BoundBox|[Xmin,Ymin,Zmin,Xmax,Ymax,Zmax] ) or ( Tuple, Tuple ) or ( Vector, Vector|Creates a bounding box. A bounding box is an orthographic cube which is a way to describe outer boundaries. You get a bounding box from a lot of 3D types. It is often used to check if a 3D entity lies in the range of another object. Checking for bounding interference first can save a lot of computing time!}}


{{APIClass|Matrix| |Creates a 4x4 [[Matrix_API|Matrix]], that can be used to apply transformations to objects.}}
{{APIClass|Vector|) o ( x,y,z|Crea un [[Vector_API|Vector]] 3D de FreeCAD, representando un punto 3D o una dirección.}}


{{APIClass|Placement| |Crea una [[Placement_API|Ubicación]].}}
{{APIClass|Vector|) or ( x,y,z|Creates a FreeCAD 3D [[Vector_API|Vector]], representing a 3D point or a direction.}}

{{APIClass|Placement| |Creates a [[Placement_API|Placement]].}}

[[Category:API]]


{{Userdocnavi{{#translation:}}}}
[[Category:API{{#translation:}}]]
[[Category:Poweruser Documentation{{#translation:}}]]
{{clear}}
{{clear}}
<languages/>

Latest revision as of 20:53, 27 February 2020

(October 2019) Do not edit this page. The information is incomplete and outdated. For the latest API, see the autogenerated API documentation, or generate the documentation yourself, see Source documentation.

El módulo Base está contenido en el módulo FreeCAD y contiene constructores para diferentes tipos de objetos ampliamente utilizados en FreeCAD.

BoundBox([Xmin,Ymin,Zmin,Xmax,Ymax,Zmax] ) o ( Tuple, Tuple ) o ( Vector, Vector)

Description: Crea una caja de abarque. Una caja de abarque es un cubo que sirve para describir los límites exteriores. Puedes obtener las cajas de abarque de un montón de tipos 3D. Se utiliza frecuentemente para verificar si una entidad 3D permanece en el rango de otro objeto. La comprobación inicial de interferencias de los límites puede ahorrar un montón de tiempo de cálculo!

Matrix( )

Description: Crea una Matriz 4x4, que puede ser utilizada para aplicar transformaciones a los objetos.

Vector() o ( x,y,z)

Description: Crea un Vector 3D de FreeCAD, representando un punto 3D o una dirección.

Placement( )

Description: Crea una Ubicación.