Delphi Programming

  1. Home
  2. Computing & Technology
  3. Delphi Programming
Glossary|Tips/Tricks|FREE App/VCL|Best'O'Net|Books|Link Back

Delphi Programming RTL Reference|By Category|Alphabetically|By Unit
 

DegToGrad

unit
Math
category
Measurement Conversion Routines

declaration
function DegToGrad(const Degrees: Extended): Extended;

description
Convert angles expressed in degrees to the value in grads.

example
var
 grad0, grad90, grad180, grad270, grad360 : extended;
begin
  grad0 := DegToGrad(0); // == 0
  grad90 := DegToGrad(90); // == 100
  grad180 := DegToGrad(180); // == 200
  grad270 := DegToGrad(270); // == 300
  grad360 := DegToGrad(360); // == 400
end;

in real code

see also
GradToDeg,


 Free Delphi code snippet inside every Delphi Newsletter!
Subscribe to the Newsletter
Name
Email

 Got some code to share? Got a question? Need some help?

Explore Delphi Programming

About.com Special Features

Build Your Own Website

Step-by-step advice on how to do everything from choosing a Web host to promoting your content. More >

Connect Your Home Computers

Easy ways to connect two computers for networking purposes. More >

Delphi Programming

  1. Home
  2. Computing & Technology
  3. Delphi Programming

©2009 About.com, a part of The New York Times Company.

All rights reserved.