未验证 提交 05ff05e1 编写于 作者: M Matt Pharr 提交者: GitHub

Merge pull request #364 from Vertexwahn/fix-spelling

Fix spelling
......@@ -483,7 +483,7 @@ int assemble(std::vector<std::string> args) {
}
if (Union(*metadata.pixelBounds, fullBounds) != fullBounds) {
Warning("%s: pixel bounds (%d, %d) - (%d, %d) in EXR file isn't inside "
"the the full image (0, 0) - (%d, %d). "
"the full image (0, 0) - (%d, %d). "
"Ignoring this file.",
file, metadata.pixelBounds->pMin.x, metadata.pixelBounds->pMin.y,
metadata.pixelBounds->pMax.x, metadata.pixelBounds->pMax.y,
......
......@@ -55,7 +55,7 @@ static PBRT_CONST int NoisePerm[2 * NoisePermSize] = {
// Noise Function Definitions
Float Noise(Float x, Float y, Float z) {
// Compute noise cell coordinates and offsets
// Avoid overflow when computing deltas if the coordiantes are too large to store in
// Avoid overflow when computing deltas if the coordinates are too large to store in
// int32s.
x = pstd::fmod(x, Float(1 << 30));
y = pstd::fmod(y, Float(1 << 30));
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册