From abd6179d4b8fddb4a776b96784596390e48b90fd Mon Sep 17 00:00:00 2001 From: Harald Steinlechner Date: Mon, 5 Aug 2019 18:27:19 +0200 Subject: [PATCH] Niobe: disabled problematic inref for the moment in travis (see https://github.com/aardvark-platform/aardvark.media/issues/24) --- src/Scratch/15 - Niobe/SketchingApp.fs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Scratch/15 - Niobe/SketchingApp.fs b/src/Scratch/15 - Niobe/SketchingApp.fs index 3244a8b2..40cb2d43 100644 --- a/src/Scratch/15 - Niobe/SketchingApp.fs +++ b/src/Scratch/15 - Niobe/SketchingApp.fs @@ -67,7 +67,10 @@ module Sg = let pDiffAvg = points |> Seq.map(fun x -> x - c) let mutable matrix = M33d.Zero + #if TRAVIS_CI + #else pDiffAvg |> Seq.iter(fun x -> matrix.AddOuterProduct(&x)) + #endif matrix <- matrix / length let mutable q = M33d.Zero