public static ICamera CreateCamera(ParameterSet parameters, AnimatedTransform cameraToWorld, IFilm film) { double shutteropen = parameters.FindOneDouble ("shutteropen", 0.0); double shutterclose = parameters.FindOneDouble ("shutterclose", 1.0); double lensradius = parameters.FindOneDouble ("lensradius", 0.0); double focaldistance = parameters.FindOneDouble ("focaldistance", 1E+30); double frame = parameters.FindOneDouble ("frameaspectratio", (double)(film.xResolution) / (double)(film.yResolution)); double[] screen = new double[4]; if (frame > 1.0) { screen[0] = -frame; screen[1] = frame; screen[2] = -1.0; screen[3] = 1.0; } else { screen[0] = -1.0; screen[1] = 1.0; screen[2] = -1.0 / frame; screen[3] = 1.0 / frame; } int swi = 0; double[] sw = parameters.FindDouble ("screenwindow", ref swi); if (sw != null && swi == 4) screen = sw; double fov = parameters.FindOneDouble ("fov", 90.0); return new Perspective (cameraToWorld, screen, shutteropen, shutterclose, lensradius, focaldistance, fov, film); }
public static IShape CreateShape(Transform o2w, Transform w2o, bool reverseOrientation, ParameterSet parameters, Dictionary<string, ITexture<double>> floatTextures, Dictionary<string, ITexture<Spectrum>> spectrumTextures) { int nvi = 0, npi = 0, nuvi = 0, nsi = 0, nni = 0; int[] vi = parameters.FindInt ("indices", ref nvi); Point[] P = parameters.FindPoint ("P", ref npi); double[] uvs = parameters.FindDouble ("uv", ref nuvi); if (uvs == null) uvs = parameters.FindDouble ("st", ref nuvi); bool discardDegnerateUVs = parameters.FindOneBool ("discarddegenerateUVs", false); // XXX should complain if uvs aren't an array of 2... if (uvs != null) { if (nuvi < 2 * npi) { uvs = null; } } if (vi == null || P == null) return null; Vector[] S = parameters.FindVector ("S", ref nsi); if (S != null && nsi != npi) { S = null; } Normal[] N = parameters.FindNormal ("N", ref nni); if (N != null && nni != npi) { N = null; } if (discardDegnerateUVs && uvs != null && N != null) { // if there are normals, check for bad uv's that // give degenerate mappings; discard them if so int vp = 0; for (int i = 0; i < nvi; i += 3,vp += 3) { double area = 0.5 * ((P[vi[vp + 0]] - P[vi[vp + 1]]) % (P[vi[vp + 2]] - P[vi[vp + 1]])).Length; if (area < 1E-07) continue; // ignore degenerate tris. if ((uvs[2 * vi[vp + 0]] == uvs[2 * vi[vp + 1]] && uvs[2 * vi[vp + 0] + 1] == uvs[2 * vi[vp + 1] + 1]) || (uvs[2 * vi[vp + 1]] == uvs[2 * vi[vp + 2]] && uvs[2 * vi[vp + 1] + 1] == uvs[2 * vi[vp + 2] + 1]) || (uvs[2 * vi[vp + 2]] == uvs[2 * vi[vp + 0]] && uvs[2 * vi[vp + 2] + 1] == uvs[2 * vi[vp + 0] + 1])) { uvs = null; break; } } } for (int i = 0; i < nvi; ++i) if (vi[i] >= npi) { return null; } ITexture<double> alphaTex = null; string alphaTexName = parameters.FindTexture ("alpha"); if (alphaTexName != "") { if (floatTextures.ContainsKey (alphaTexName)) alphaTex = floatTextures[alphaTexName]; } else if (parameters.FindOneDouble ("alpha", 1.0) == 0.0) alphaTex = new ConstantTexture<double> (0.0); return new TriangleMesh (o2w, w2o, reverseOrientation, nvi / 3, npi, vi, P, N, S, uvs, alphaTex); }