JavaMathSupport.st
author convert-repo
Fri, 26 Jul 2013 03:25:47 +0000
changeset 2636 bd4e1b6cfc03
parent 2606 b8efc7a7e7fb
child 2678 c865275e48a7
child 2710 78c4f4a03914
permissions -rw-r--r--
update tags

"
 COPYRIGHT (c) 1996-2011 by Claus Gittinger

 New code and modifications done at SWING Research Group [1]:

 COPYRIGHT (c) 2010-2011 by Jan Vrany, Jan Kurs and Marcel Hlopko
			    SWING Research Group, Czech Technical University in Prague

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.

 [1] Code written at SWING Research Group contains a signature
     of one of the above copright owners. For exact set of such code,
     see the differences between this version and version stx:libjava
     as of 1.9.2010
"
"{ Package: 'stx:libjava' }"

Object subclass:#JavaMathSupport
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Languages-Java-Support-Native'
!

!JavaMathSupport class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 1996-2011 by Claus Gittinger

 New code and modifications done at SWING Research Group [1]:

 COPYRIGHT (c) 2010-2011 by Jan Vrany, Jan Kurs and Marcel Hlopko
			    SWING Research Group, Czech Technical University in Prague

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.

 [1] Code written at SWING Research Group contains a signature
     of one of the above copright owners. For exact set of such code,
     see the differences between this version and version stx:libjava
     as of 1.9.2010

"
! !


!JavaMathSupport class methodsFor:'java-style FP functions'!

cos:f

%{
	RETURN ( __MKFLOAT( jcos ( __floatVal ( f ) ) ) );
%}


    "Created: / 07-09-2011 / 17:34:18 / Jan Vrany <jan.vrany@fit.cvut.cz>"
!

cosh: f

%{
	RETURN ( __MKFLOAT( jcosh ( __floatVal ( f ) ) ) );
%}

    "Created: / 07-09-2011 / 17:08:17 / Jan Vrany <jan.vrany@fit.cvut.cz>"
!

expm1:f

%{
	RETURN ( __MKFLOAT( jexpm1 ( __floatVal ( f ) ) ) );
%}

    "Created: / 07-09-2011 / 17:34:02 / Jan Vrany <jan.vrany@fit.cvut.cz>"
!

floor:f

%{
	RETURN ( __MKFLOAT( jfloor ( __floatVal ( f ) ) ) );
%}

    "Created: / 07-09-2011 / 17:33:35 / Jan Vrany <jan.vrany@fit.cvut.cz>"
!

sin:f

%{
	RETURN ( __MKFLOAT( jsin ( __floatVal ( f ) ) ) );
%}

    "Created: / 07-09-2011 / 17:32:24 / Jan Vrany <jan.vrany@fit.cvut.cz>"
!

sinh: f

%{
	RETURN ( __MKFLOAT( jsinh ( __floatVal ( f ) ) ) );
%}


    "Created: / 07-09-2011 / 17:08:21 / Jan Vrany <jan.vrany@fit.cvut.cz>"
!

tanh:f

%{
	RETURN ( __MKFLOAT( jtanh ( __floatVal ( f ) ) ) );
%}


    "Created: / 07-09-2011 / 17:32:09 / Jan Vrany <jan.vrany@fit.cvut.cz>"
! !


!JavaMathSupport class methodsFor:'documentation'!

version_CVS
    ^ '$Header: /cvs/stx/stx/libjava/JavaMathSupport.st,v 1.3 2013-05-21 21:15:08 cg Exp $'
!

version_HG

    ^ '$Changeset: <not expanded> $'
!

version_SVN
    ^ '§Id§'
! !