Here you can find the source of sinf(float f)
Parameter | Description |
---|---|
angle | a parameter |
public static float sinf(float f)
//package com.java2s; //License from project: Open Source License public class Main { /**// w w w. j av a 2s. c om * Uses Math.sin, but returns the result as a float. * @param angle * @returns the sinus of angle */ public static float sinf(float f) { return (float) Math.sin(f); } }