Phaxas

Phaxas is a genus of small razor shells in the family Pharidae. Members of the genus have a pair of elongate valves and live in soft sediments on the sea bed. They have a muscular foot with which they can dig rapidly and a short siphon which they extend to the surface of the substrate. They are suspension feeders.[1]

Phaxas
Phaxas pellucidus
Scientific classification
Kingdom: Animalia
Phylum: Mollusca
Class: Bivalvia
Subclass: Heterodonta
Order: Adapedonta
Family: Pharidae
Genus: Phaxas
Leach in Gray, 1852
Species

See text

Species

The following species are recognised:[2]

  • Phaxas adriaticus (Coen, 1933)
  • Phaxas pellucidus (Pennant, 1777)
  • Phaxas tenellus Cosel, 1993
gollark: ```javascriptconst renderPlayer = (player) => { let str = "" for (let y = player.y - 5; y <= player.y + 5; y++) { for (let x = player.x - 10; x <= player.x + 10; x++) { let wallCol = getWallColor(x, y) if (x >= WIDTH) { str += wallCol } else if (y >= HEIGHT) { str += wallCol } else if (x < 0) { str += wallCol } else if (y < 0) { str += wallCol } else { let id = getEnemy(x, y) if (id != -1) { str += enemy_icons[enemies[id].id] } else { let id = getPlayer(x, y) if (id != -1) { str += players[id].icon } else { let id = getBonus(x, y) if (id != -1) { str += "?" } else { str += " " } } } } } str += "\n" } return str}```
gollark: YES, SOME OFFENSE.
gollark: As I said, this is not very good code.]
gollark: Every rendered tile.
gollark: I suppose baidicoot thought "hmm, how might I find whether a player is on a tile I'm rendering". Now, you might think "hmm yes, the solution to this is just to maintain a map of coordinates to entities, or something like that". But no! The game ITERATES OVER ALL PLAYERS FOR EVERY SINGLE TILE.

References

  1. Barrett, J. & C. M. Yonge (1958) Collins Pocket Guide to the Sea Shore. Collins, London
  2. World Register of Marine Species
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.