quaternion-java/fr/alnotz/quaternion/IsDual.java
2023-05-23 23:28:58 +02:00

17 lines
347 B
Java
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package fr.alnotz.quaternion;
/**
* Interface détiquette pour tout nombre dual.
*/
public interface IsDual {
double getR();
double getD();
void setR(double r);
void setD(double d);
IsDual plus(IsDual dual);
IsDual times(IsDual dual);
IsDual conjugate();
boolean equals(IsDual dual);
String toString();
}