Tag Archives: how to

TEA BREAK WITH NANOCAD: 2.4 SELECTING OBJECTS

For nanoCAD objects there are two selection method;

2.4.1 FROM LEFT TO RIGHT

If you click left button on your mouse and while clicking if you scan from left to right like the one here;

and leave it there; you will see that nothing is chosen;

But if you do the same operation by getting the “scanning rectangle” over the whole objects you will see it selects;

This is why left to right selection select only if you get them inside that scanning rectangle. For example you can only get the line on the left by scanning like this;

2.4.2 FROM RIGHT TO LEFT

If you select from right to left, you don’t need to try to get items inside the rectangle you can only touch them with rectangle is enough. So, if you do something like this;

It will select the hatch top and right hand side lines as well ignoring if they are completely inside the rectangle or not;

2.5 EX: PHOTO FRAME

2.6 EX: VASE FROM SIDE VIEW

TEA TIME WITH FUCHSIA SDK: ANDROID WILL BE OUT OF DATE SOON. FUCHSIA IS COMING

Continue reading TEA TIME WITH FUCHSIA SDK: ANDROID WILL BE OUT OF DATE SOON. FUCHSIA IS COMING

EE07a: DC MOTOR STARTING CURRENT, BACK EMF, ARMATURE CURRENT AT SPECIFIC SPEED CALCULATOR

Continue reading EE07a: DC MOTOR STARTING CURRENT, BACK EMF, ARMATURE CURRENT AT SPECIFIC SPEED CALCULATOR

TEA BREAK WITH EXCEL: FINDING A SPECIFIC TEXT IN A CELL RANGE (OR IF THIS TEXT IS INCLUDED IN THIS RANGE OR NOT?)

Tea Rating: ☕

To find a specific text in a specific range we are using the formula;

Continue reading TEA BREAK WITH EXCEL: FINDING A SPECIFIC TEXT IN A CELL RANGE (OR IF THIS TEXT IS INCLUDED IN THIS RANGE OR NOT?)

TEA BREAK WITH C++: DATA TYPES

Continue reading TEA BREAK WITH C++: DATA TYPES

TEA BREAK WITH NANOCAD: COMMAND LINE BAR AND DRAWING YOUR FIRST LINE

NOTE: You may download codes and extra source material for this book from https://bookofengineering.com/books/nanocad/

Continue reading TEA BREAK WITH NANOCAD: COMMAND LINE BAR AND DRAWING YOUR FIRST LINE

TEA BREAK WITH C++: VARIABLES

Since we learned basic input function at programming with C++, we need to talk a little more about the variables. 

Variables are simply naming some data location in your pc. With variables you can store a value. 

Continue reading TEA BREAK WITH C++: VARIABLES

TEA BREAK WITH C++: Basic Input & endl

On line 9 in the previous example we give 

    int firstNumber, secondNumber, sum;

We define integer variables. These are first number with the definition firstNumber, and the second number defined as secondNumber. And the sum. These we defined as integer by writing “int” at the beginning.  

Continue reading TEA BREAK WITH C++: Basic Input & endl

TEA BREAK WITH C++ : Basic Comment Section for All programs

NOTE: You may download codes and extra source material for this book from https://bookofengineering.com/easyseries/

Here these lines are comment section giving information about the program, and you need to include these lines so that another programmer can understand what it is about easily. 

Continue reading TEA BREAK WITH C++ : Basic Comment Section for All programs

TEA BREAK WITH C++: Basic Comment Section for All programs

NOTE: You may download codes and extra source material for this book from https://bookofengineering.com/easyseries/

Here these lines are comment section giving information about the program, and you need to include these lines so that another programmer can understand what it is about easily. 

Continue reading TEA BREAK WITH C++: Basic Comment Section for All programs