Mar 20, 2020
Nov 7, 2019(6y)
Nov 7, 2026(66d)
Combat
Kills609
Losses124
Efficiency83%
ISK
Destroyed1.00t
Lost11.60b
ISK Eff.99%
Solo
Solo Kills21
Solo Ratio3%
Final Blows70
Combat Points609
Other
NPC Losses18
NPC Loss Ratio15%
Avg Kills/Day0.24
ActivityInactive
Nothing in the last 7d
Bio
/*
* Represents an immutable pair of width and height.
*/
public class Dimension
{
public static final Dimension NULL = new Dimension(0, 0);
private final int aWidth;
private final int aHeight;
public Dimension( int pWidth, int pHeight )
{
aWidth = pWidth;
aHeight = pHeight;
}
public String toString()
{ return String.format(...); }
public Dimension include(int pWidth, int pHeight)
{
return new Dimension(
max(aWidth, pWidth), max(aHeight, pHeight) );
}
public int getWidth() { return aWidth; }
public int getHeight() { return aHeight; }
public int hashCode() {...}
public boolean equals(Object pObject)
{
if(this == pObject) { return true; }
if(pObject == null) { return false; }
if(getClass() != pObject.getClass()) { return false; }
Dimension other = (Dimension) pObject;
return aHeight == other.aHeight &&
aWidth == other.aWidth;
}
}
Dashboard
Stats

No activity in the last 90d

Last seen Mar 2020

Intel Profile
PlaystyleSolo (0 kills)
Avg Fleet: -