display a Vect object - labeling each component
What will be an ideal response?
```
{
double degrees;
double minutes;
minutes = (avect.theta * 360) / (2 * Pi) * 60;
for( degrees = 0; minutes >= 60; minutes -= 60)
degrees++;
os << " (Vect object) " << endl
<< " magnitude: " << avect.r << endl
<< " degrees: " << degrees << endl
<< " minutes: " << minutes " endl;
return os;
}
```
Computer Science & Information Technology
You might also like to view...
When exporting to a PDF, what should you check for when the objects are exported?
A) The number of pages B) The format of the report C) The name of the exported file D) The folder the file was saved to
Computer Science & Information Technology
How can you create an exact copy of an existing layer?
What will be an ideal response?
Computer Science & Information Technology