Otto Pischinger

Otto Pischinger (1919–1976) was an Austrian art director who designed the sets for a large number of films during his career. In 1955 he worked on The Last Ten Days.[1] He was married to Hertha Hareiter, also an art director, until his death.

Otto Pischinger
Born14 February 1919
Died5 August 1976
Amstetten, Austria
OccupationArt Director
Years active1949 - 1975 (film)

Selected filmography

gollark: Apparently Zig can get some optimizations out of making all integer overflow UB.
gollark: (mod 2^128 or so)
gollark: Fibonaccae WILL be computed.
gollark: ```ruststruct Fib1 { cache: Vec<u128>}impl Iterator for Fib1 { type Item = u128; fn next(&mut self) -> Option<Self::Item> { let n = self.cache.len(); let next = self.cache[n - 1].wrapping_add(self.cache[n - 2]); self.cache.push(next); Some(next) }}fn fib1() -> Fib1 { Fib1 { cache: vec![0, 1] } }fn main() { for n in fib1() { print!("{} ", n); }}```
gollark: I prefer it this way.

References

  1. Silberman p.243

Bibliography

  • Silberman, Marc. German Cinema: Texts in Context. Wayne State University Press, 1995.


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.