3D view/pt-br: Difference between revisions

From FreeCAD Documentation
(Created page with "Quando a bancada de trabalho Start está ativa, ao clicar com o botão direito do mouse na área de modelagem 3D, aparece apenas o comando * {{MenuCommand|...")
(Created page with "Entretanto, quando uma bancada de trabalho é carregada, outros comandos aparecem: * {{MenuCommand|Link actions}}: Criar link. ** {{MenuComman...")
Line 22: Line 22:
* {{MenuCommand|[[Mouse_navigation|Estilos de navegação]]}}, que dá acesso a diferentes métodos de uso dos botões do mouse ou do trackpad do notebook.
* {{MenuCommand|[[Mouse_navigation|Estilos de navegação]]}}, que dá acesso a diferentes métodos de uso dos botões do mouse ou do trackpad do notebook.


However, once a [[Workbenches|Workbench]] is loaded, there are additional commands:
Entretanto, quando uma [[Workbenches|bancada de trabalho]] é carregada, outros comandos aparecem:
* {{MenuCommand|Link actions}}: [[Std LinkMake|Make Link]].
* {{MenuCommand|Link actions}}: [[Std LinkMake|Criar link]].
** {{MenuCommand|Make Link group}}: [[Std_LinkMakeGroup|Simple group]], [[Std_LinkMakeGroup|Group with links]], [[Std_LinkMakeGroup|Group with transform links]].
** {{MenuCommand|Criar grupo de links}}: [[Std_LinkMakeGroup|Agrupamento simples]], [[Std_LinkMakeGroup|Agrupar com links]], [[Std_LinkMakeGroup|Grupo com vínculos de transformação]].
* {{MenuCommand|[[Std_ViewFitAll|Fit all]]}}: pans and zooms the view to fit all objects in the document on the screen.
* {{MenuCommand|[[Std_ViewFitAll|Enquadrar tudo]]}}: ajusta a visibilidade para que todos os objetos do documento apareçam na tela.
* {{MenuCommand|[[Std_ViewFitSelection|Fit selection]]}}: pans and zooms the view to tightly fit the currently selected object on the screen.
* {{MenuCommand|[[Std_ViewFitSelection|Enquadrar seleção]]}}: ajusta a visibilidade para que todos os objetos selecionados apareçam na tela.
* {{MenuCommand|[[Std_DrawStyle|Draw style]]}}: as is, flat lines, shaded, wireframe, points, hidden line, no shading.
* {{MenuCommand|[[Std_DrawStyle|Estilo de desenho]]}}: escolha entre o Estilo padrão, Pontos, Arame, Linha oculta, Sem sombreamento, Sombreado e Linhas planas.
* {{MenuCommand|[[Std_View_Menu|Standard views]]}}: [[Std_ViewIsometric|isometric]], [[Std_ViewFront|front]], [[Std_ViewTop|top]], [[Std_ViewRight|right]], [[Std_ViewRear|rear]], [[Std_ViewBottom|bottom]], [[Std_ViewLeft|left]], [[Std_ViewRotateLeft|rotate left]], [[Std_ViewRotateRight|rotate right]].
* {{MenuCommand|[[Std_View_Menu|Vistas padrão]]}}: [[Std_ViewIsometric|Isométrico]], [[Std_ViewFront|Frente]], [[Std_ViewTop|Topo]], [[Std_ViewRight|Direito]], [[Std_ViewRear|Traseira]], [[Std_ViewBottom|De baixo]], [[Std_ViewLeft|Esquerda]], [[Std_ViewRotateLeft|Girar para esquerda]], [[Std_ViewRotateRight|Girar para direita]].
* {{MenuCommand|Measure}}: [[View_Measure_Toggle_All|toggle measurement]], [[View_Measure_Clear_All|clear measurement]].
* {{MenuCommand|Measure}}: [[View_Measure_Toggle_All|Alternar medição]], [[View_Measure_Clear_All|Limpar medições]].
* {{MenuCommand|Document window}}: [[Std_ViewDockUndockFullscreen|docked]], [[Std_ViewDockUndockFullscreen|undocked]], and [[Std_ViewDockUndockFullscreen|fullscreen]].
* {{MenuCommand|Janela do documento}}: [[Std_ViewDockUndockFullscreen|Ancorado]], [[Std_ViewDockUndockFullscreen|Desancorado]], and [[Std_ViewDockUndockFullscreen|Tela cheia]].


Additionally, depending on the workbench and object that is active, other contextual commands may become available.
Additionally, depending on the workbench and object that is active, other contextual commands may become available.

Revision as of 23:18, 8 November 2021

Introdução

A vista 3D,que constitui a janela mais importante da interface do FreeCAD, é uma instância da Coin3D, biblioteca para implementação de área de modelagem que segue o padrão OpenInventor 2.1 scenegraph

Certas propriedades da visualização, como cor de fundo, estilo de navegação do mouse, e tarefas como fazer um zoom, podem ser configuradas no editor de preferências.

A visualização 3D é um componente do FreeCAD interface. Por padrão, ele mostra um pequeno widget com eixos de coordenadas e o cubo de navegação, que também tem eixos de coordenadas; a grade pode ser exibida e configurada carregando a bancada de trabalho Draft.

Ações

Note: links para as ações da introduced in version 0.19.

Uma vez que a vista hierárquica de objetos lista a maioria dos objetos que estão visíveis na área de modelagem 3D, é possível realizar, direto nesta área, muitas ações que normalmente são executadas pela vista hierárquica de objetos.

Quando a bancada de trabalho Start está ativa, ao clicar com o botão direito do mouse na área de modelagem 3D, aparece apenas o comando

  • Estilos de navegação, que dá acesso a diferentes métodos de uso dos botões do mouse ou do trackpad do notebook.

Entretanto, quando uma bancada de trabalho é carregada, outros comandos aparecem:

Additionally, depending on the workbench and object that is active, other contextual commands may become available.

For example, with the Part Workbench and one object selected:

  • Appearance: launches the dialog to change color and sizes of lines and vertices, and color of faces.
  • Toggle visibility: makes the object visible or invisible in the 3D view.
  • Toggle selectability: makes the object no longer selectable in the 3D view; use again this command to cancel its effect. It sets the object's Selectable attribute to true or false. Change the property by toggling VistaSelectable in the property editor.
  • Go to selection: expand the tree view to show the selected object in the hierarchy.
  • Random color: assigns a random color to the object. It sets the object's ShapeColor attribute to a tuple (r,g,b) with tree random floats between 0 and 1. Change the property by modifying VistaShape Color in the property editor.
  • Delete: removes the object from the document, and from the 3D view, by calling the document's removeObject() method.

Another example, with the Draft Workbench and one object selected, it shows the same commands as with the Part Workbench, but also:

Detalhes

FreeCAD uses the Quarter library to use Coin3D in a Qt environment.

It is possible to interact directly with the 3D view scenegraph from the Python console by using the Python library Pivy.

For more information see the power user documentation: