Here you can find the source of sind(double degreeAngle)
public static double sind(double degreeAngle)
//package com.java2s; //License from project: Open Source License public class Main { public static double sind(double degreeAngle) { return Math.sin(Math.toRadians(degreeAngle)); }/*from w w w .j a v a2 s .c om*/ }