Click here to Skip to main content
15,886,067 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.9K   887   90  
Did you skip class the day trigonometry was taught? This article will explain what you’ve been missing all these years.
<UserControl x:Class="RedCell.Articles.RightAngleTriangle.BallSimulator"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    mc:Ignorable="d"
    d:DesignHeight="300" d:DesignWidth="600" BorderThickness="5" BorderBrush="Black" xmlns:sdk="http://schemas.microsoft.com/winfx/2006/xaml/presentation/sdk">

    <Canvas x:Name="Frame" Background="White" Width="600" Height="300" >
        <Rectangle Canvas.Left="0" Canvas.Top="0" Height="300" Name="rectangle1" Stroke="Black" StrokeThickness="1" Width="600" />
    </Canvas>
</UserControl>

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