THIS line of code lets you use simplified syntax in C++
Two functions make up an Arduino sketch. void setup() {...} and THIS
void loop() { ... }
Typing "L" will begin THIS command
line
THIS command lets you specify the length of a line, distance between two points, or size of a circle
SMART DIMENSION
Use THIS command to look up syntax and examples for any function
"help" or "doc"
THIS variable type is used to express True or False
Boolean
THIS command is used to send a binary signal (0 or 1, high or low)
digitalWrite()
THIS snapping setting keeps your lines perfectly horizontal or vertical
ortho, orthomode
THIS command creates a rounded edge/face, based on a specified radius
FILLET
Adding a semicolon at the end of a line does THIS in MATLAB
suppresses output to the command window
THIS command can be used to get input from the user (also indicate the direction of the carets)
cin >>
THIS is a set of user-defined instructions that can be called over and over in a program
function
Use THIS color and line type for features that can't be seen in the current view (hidden)
red, dashed
To use the Revolve tool, you need THESE TWO things
(1) a sketch profile/shape to revolve
(2) an axis of revolution
THIS is the vector that will be created with this command:
data = 2:2:6
data = [2 4 6]
THIS operator is used to check if two values are not equal in an if statement
!=
THIS command could be used to receive a signal from a temperature sensor wired to pin 7
analogRead(7);
Use THIS symbol to indicate a relative coordinate (starting from the previous point, not the orgin)
@
THIS command creates a 3D feature by extruding a sketch along a curved path
SWEEP
The MATLAB command to plot data vs time using a solid black line with stars
plot(time, data, 'k-*')
If you want the for loop to run 6 times, what could THIS be:
for (int i = 0; THIS; i++)
i < 6;
i <=5;
THIS is the method used to control speed of a DC motor
pulse width modulation (PWM)
Draw THIS object in the paper space in order to view objects from the model space when you are ready to plot to PDF
viewport
In an assembly, use THIS to align the center points of two circular features of two separate parts
CONCENTRIC MATE
THIS lets you multiply each element of one matrix by the corresponding element of another matrix
.*