(Texture t)
| 486 | } |
| 487 | |
| 488 | public int getRadius(Texture t) { |
| 489 | if (t == null) |
| 490 | return 20; |
| 491 | ImageRecord record = imageRecord.get().get(t.toString()); |
| 492 | if (record == null) |
| 493 | return 20; |
| 494 | Integer i = record.cardRadius; |
| 495 | if (i == null) |
| 496 | return 20; |
| 497 | return i; |
| 498 | } |
| 499 | |
| 500 | public boolean isFullBorder(Texture image) { |
| 501 | if (image == null) |