Home | History | Annotate | Download | only in filters

Lines Matching defs:representation

42         FilterTinyPlanetRepresentation representation = new FilterTinyPlanetRepresentation();
43 copyAllParameters(representation);
44 return representation;
48 protected void copyAllParameters(FilterRepresentation representation) {
49 super.copyAllParameters(representation);
50 representation.useParametersFrom(this);
55 FilterTinyPlanetRepresentation representation = (FilterTinyPlanetRepresentation) a;
57 mAngle = representation.mAngle;
58 setZoom(representation.getZoom());
82 public boolean equals(FilterRepresentation representation) {
83 if (!super.equals(representation)) {
86 if (mAngle == ((FilterTinyPlanetRepresentation) representation).mAngle) {