CFLib.org – Common Function Library Project

AreaTrapezoid(base1, base2, height)

Last updated July 17, 2001

Version: 1 | Requires: ColdFusion 5 | Library: MathLib

 
Rated 0 time(s). Average Rating: 0

Description:
Calculates the area of a trapezoid based on the length of the top and bottom bases and the height.

Return Values:
Returns the area of the trapezoid.

Example:

view plain print about
<CFSET base1=4>
  <CFSET base2=6>
  <CFSET height=5>
  <CFOUTPUT>
  Given:
  <UL>
  <LI>base1=#base1#
  <LI>base2=#base2#
  <LI>height=#height#
  </UL>
  The area of the trapezoid is #AreaTrapezoid(base1, base2, height)#
  </CFOUTPUT>

Parameters:

Name Description Required
base1 Length of the bottom base. Yes
base2 Length of the top base. Yes
height Height of the trapezoid. Yes

Full UDF Source:

view plain print about
<cfscript>
/**
 * Calculates the area of a trapezoid.
 * 
 * @param base1      Length of the bottom base. 
 * @param base2      Length of the top base. 
 * @param height      Height of the trapezoid. 
 * @return Returns the area of the trapezoid. 
 * @author Rob Brooks-Bilson (rbils@amkor.com) 
 * @version 1.0, July 17, 2001 
 */

function AreaTrapezoid(base1, base2, height)
{
  Return (base1 + base2)/2 * height;
}
</cfscript>
blog comments powered by Disqus

Search CFLib.org


Latest Additions

Tayo Akinmade Tayo Akinmade added
arrayTrim
4 day(s) ago

Will Belden Will Belden added
longTime
9 day(s) ago

James Sleeman James Sleeman added
quickSort
19 day(s) ago

Ben Forta Ben Forta added
GetHostAddress
22 day(s) ago

Top Rated

Darwan Leonardo Sitepu EksporSQLData
Rated 5.0, 16 time(s)

Darwan Leonardo Sitepu backupDatabase
Rated 5.0, 13 time(s)

Barney Boisvert indentXml
Rated 5.0, 10 time(s)

Kevin Pepperman generateSsccAsn
Rated 5.0, 4 time(s)

Created by Raymond Camden / Design by Justin Johnson