FCGear TimingGearT

This documentation is not finished. Please help and contribute documentation.

GuiCommand model explains how commands should be documented. Browse Category:UnfinishedDocu to see more incomplete pages like this one. See Category:Command Reference for all commands.

See WikiPages to learn about editing the wiki pages, and go to Help FreeCAD to learn about other ways in which you can contribute.


FCGear TimingGearT

Menu location
Gear → Timing Gear T-shape
Workbenches
Gear
Default shortcut
None
Introduced in version
v0.16
See also
FCGear TimingGear

Description

The FCGear TimingGearT command creates a timing gear T …

Above: Timing gear T

Usage

  1. Switch to the Gear Workbench.
  2. There are several ways to invoke the command:
    • Press the Timing Gear T-shape button in the toolbar.
    • Select the Gear → Timing Gear T-shape option from the menu.
  3. Change the gear parameter to the required conditions (see Properties).

Properties

See also: Property View.

An FCGear TimingGearT object is derived from a Part Feature object and inherits all its properties. It also has the following additional properties:

Data

base

fillets

tolerance

Scripting

Use the power of Python to automate your gear modeling:

import FreeCAD as App
import FreeCADGui as Gui
import freecad.gears.commands
gear = freecad.gears.commands.CreateTimingGearT.create()
gear.num_teeth = 12
gear.height = 5
App.ActiveDocument.recompute()
Gui.SendMsgToActiveView("ViewFit")