Skip to content

Go package for computing volumes and surface area of high dimensional shapes.Tested using Travis CI 🚀

License

Notifications You must be signed in to change notification settings

ShreyasSubhedar/geoshp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

geoshp

GeoShp

Go package for computing volumes and surface area of high dimensional shapes.

  • GoDoc Go Report Card Build Status codecov

Usage

Installation

go get github.com/ShreyasSubhedar/geoshp

Importing

import "github.com/ShreyasSubhedar/geoshp"

Example: method invoke

import (
	"fmt"

	"github.com/ShreyasSubhedar/geoshp"
)

func main() {
	// Declaring some variables
	var radius float64
	var height float64

	// Calling Scan() function for
	// scanning and reading the input
	// texts given in standard input
	fmt.Scan(&radius)
	fmt.Scan(&height)

	// Printing the given texts
	vol := geoshp.CyclinderVol(radius, height)
	fmt.Println("The volume of given cylinder : ", vol)
}

About

Go package for computing volumes and surface area of high dimensional shapes.Tested using Travis CI 🚀

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages