Given one generator $G \colon \\{0,1\\}^s \to \\{0,1\\}^n$ we define another generator as follows: Given $k$, first swap all bits, that is xor with $1^s$, then apply $G$, as a formula: We define $G'\colon \\{0,1\\}^s \to \\{0,1\\}^n$ by $G'(k) = G(k \oplus 1^s)$.
For example: $G'(100) = G(001)$, $G'(111) = G(000)$ and so on.