Sanctuary (1933 film)
Sanctuary (Spanish:Sagrario) is a 1933 Mexican drama film directed by Ramón Peón and starring Ramón Pereda, Adriana Lamar and Julio Villarreal.[1]
Sanctuary | |
---|---|
Directed by | Ramón Peón |
Produced by | Gabriel Flores Guillermo Tardiff |
Written by | Carlos L. Cabello Quirico Michelena |
Starring | Ramón Pereda Adriana Lamar Julio Villarreal |
Music by | Manuel Sereijo Max Urban |
Cinematography | Alex Phillips |
Edited by | Ramón Peón |
Production company | Aspa Films |
Distributed by | Películas Mexicanas |
Release date | 28 September 1933 |
Running time | 71 minutes |
Country | Mexico |
Language | Spanish |
Cast
- Ramón Pereda as Dr. Horacio Rueda
- Adriana Lamar as Elena Rivero
- Julio Villarreal as Juan Rivero
- María Luisa Zea as Sagrario Rivero
- Luis G. Barreiro as Dr. Gutiérrez
- Juan Orol as Carmelo
- Consuelo Moreno as Concha
- Pili Castellanos as Sagrario, niña
- María Valdealde as Doña Lupe
- Jesús Melgarejo as Don Chencho
- María Luisa Armit as Criada
- Francisco Lugo as Arturo
- Fabián Villar as Detective
- Carlos L. Cabello as Preso
gollark: This is for rendering the area around a player.
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.
References
- Balderston, Gonzalez & Lopez p.1080
Bibliography
- Daniel Balderston, Mike Gonzalez & Ana M. Lopez. Encyclopedia of Contemporary Latin American and Caribbean Cultures. Routledge, 2002.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.