tests/testthat/test-scale_matrix.R

context("scaling_matrix")

test_that("scaling_matrix works", {
  mat <- scaling_matrix(vec3(1, 2, 4))


  ref <- matrix(
    c(1, 0, 0, 0,
      0, 2, 0, 0,
      0, 0, 4, 0,
      0, 0, 0, 1), byrow = TRUE, nrow=4)


  expect_equal(mat, ref)
})
coolbutuseless/threed documentation built on May 5, 2019, 7:08 a.m.