Click here to Skip to main content
15,881,173 members
Articles / Programming Languages / C#

The right-angle triangle: Meet your new best friend

Rate me:
Please Sign up or sign in to vote.
4.92/5 (94 votes)
5 Feb 2014CPOL6 min read 124.2K   887   90  
Did you skip class the day trigonometry was taught? This article will explain what you’ve been missing all these years.
using System.Reflection;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following 
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("RightAngleTriangle")]
[assembly: AssemblyDescription("A Silverlight demonstation of the application of trigonometry")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Red Cell Innovation Inc.")]
[assembly: AssemblyProduct("RedCell.Articles.RightAngleTriangle")]
[assembly: AssemblyCopyright("©  2011 Red Cell Innovation Inc.")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible 
// to COM components.  If you need to access a type in this assembly from 
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("8331bbc0-676b-4d77-9cc6-44ee81c71675")]

// Version information for an assembly consists of the following four values:
//
//      Major Version
//      Minor Version 
//      Build Number
//      Revision
//
// You can specify all the values or you can default the Revision and Build Numbers 
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.0.0.*")]
[assembly: AssemblyFileVersion("1.0.0.0")]

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Engineer Robotic Assistance Devices / AITX
Canada Canada
Yvan Rodrigues has 30 years of experience in information systems and software development for the industry. He is Senior Concept Designer at Robotic Assistance Devices

He is a Certified Technician (C.Tech.), a professional designation granted by the Institute of Engineering Technology of Ontario (IETO).

Yvan draws on experience as owner of Red Cell Innovation Inc., Mabel's Labels Inc. as Manager of Systems and Development, the University of Waterloo as Information Systems Manager, and OTTO Motors as Senior Systems Engineer and Senior Concept Designer.

Yvan is currently focused on design of embedded systems.

Comments and Discussions