]> gitweb.factorcode.org Git - factor.git/commitdiff
math.trig: remove reference to this vocab
authorCapital <CapitalEx@protonmail.com>
Sun, 10 Sep 2023 17:11:50 +0000 (13:11 -0400)
committerJohn Benediktsson <mrjbq7@gmail.com>
Sun, 10 Sep 2023 17:18:18 +0000 (10:18 -0700)
Additionally, use help-lint-all to check for
references.

13 files changed:
basis/colors/lch/lch.factor
extra/L-system/L-system.factor
extra/boids/boids.factor
extra/colors/distances/distances.factor
extra/game/debug/tests/tests.factor
extra/gml/coremath/coremath.factor
extra/gml/geometry/geometry.factor
extra/math/affine-transforms/affine-transforms-docs.factor
extra/rlgl/demo/demo.factor
extra/rosetta-code/haversine-formula/haversine-formula.factor
extra/svg/svg-tests.factor
extra/svg/svg.factor
extra/terrain/terrain.factor

index 5b5d53d49f02599a7d45d6d1a35f4ede174f674c..d8df277ea0615f317c02d3714218a2cee5d769ca 100644 (file)
@@ -2,7 +2,7 @@
 ! See https://factorcode.org/license.txt for BSD license
 
 USING: accessors colors colors.lab colors.luv colors.xyz kernel
 ! See https://factorcode.org/license.txt for BSD license
 
 USING: accessors colors colors.lab colors.luv colors.xyz kernel
-math math.functions math.libm math.trig ;
+math math.functions math.libm ;
 
 IN: colors.lch
 
 
 IN: colors.lch
 
index 1319853ebba95dcedeedbd77a21deea9661ce518..f64c9d9678c981bca1d4bf249e477869806e74fc 100644 (file)
@@ -2,7 +2,7 @@
 USING: accessors arrays assocs calendar colors
 combinators.short-circuit help help.markup help.syntax kernel
 math math.functions math.matrices math.order math.parser
 USING: accessors arrays assocs calendar colors
 combinators.short-circuit help help.markup help.syntax kernel
 math math.functions math.matrices math.order math.parser
-math.trig math.vectors opengl opengl.demo-support opengl.gl
+math.vectors opengl opengl.demo-support opengl.gl
 opengl.glu sbufs sequences strings threads ui.gadgets
 ui.gadgets.worlds ui.gestures ui.render ;
 
 opengl.glu sbufs sequences strings threads ui.gadgets
 ui.gadgets.worlds ui.gestures ui.render ;
 
index 92aa819ade03e2d054857dd2a1888910cc51ea53..d3dc17e1338d98fffc31c05d816afa8490599a5e 100644 (file)
@@ -3,7 +3,7 @@
 ! See https://factorcode.org/license.txt for BSD license.
 
 USING: accessors arrays boids.simulation calendar classes colors
 ! See https://factorcode.org/license.txt for BSD license.
 
 USING: accessors arrays boids.simulation calendar classes colors
-kernel literals math math.functions math.trig models
+kernel literals math math.functions models
 models.range opengl opengl.demo-support opengl.gl sequences
 threads ui ui.commands ui.gadgets ui.gadgets.borders
 ui.gadgets.buttons ui.gadgets.frames ui.gadgets.grids
 models.range opengl opengl.demo-support opengl.gl sequences
 threads ui ui.commands ui.gadgets ui.gadgets.borders
 ui.gadgets.buttons ui.gadgets.frames ui.gadgets.grids
index 40c09bc2b53c634e852c6acdc96d2ea04287223e..b4df214f6e2f5d7b748a9a729f8cfcebca52d14e 100644 (file)
@@ -2,7 +2,7 @@
 ! See https://factorcode.org/license.txt for BSD license
 
 USING: accessors colors colors.lab colors.lch kernel math
 ! See https://factorcode.org/license.txt for BSD license
 
 USING: accessors colors colors.lab colors.lch kernel math
-math.functions math.libm math.order math.trig ;
+math.functions math.libm math.order ;
 
 IN: colors.distances
 
 
 IN: colors.distances
 
index 22f1070dc1a9f04ff999ebaf58cd120401a9a4cc..d1d0b1a4bda95cb1deabf5168091e9b9e9fe9e75 100644 (file)
@@ -2,7 +2,7 @@
 ! See https://factorcode.org/license.txt for BSD license.
 USING: accessors colors game.debug game.loop game.worlds gpu
 gpu.framebuffers gpu.util.wasd kernel literals locals make math
 ! See https://factorcode.org/license.txt for BSD license.
 USING: accessors colors game.debug game.loop game.worlds gpu
 gpu.framebuffers gpu.util.wasd kernel literals locals make math
-math.matrices math.matrices.extras math.parser math.trig
+math.matrices math.matrices.extras math.parser math.functions
 sequences specialized-arrays ui.gadgets.worlds ui.pixel-formats
 ;
 FROM: alien.c-types => float ;
 sequences specialized-arrays ui.gadgets.worlds ui.pixel-formats
 ;
 FROM: alien.c-types => float ;
index 124fcf8baead30ca27777af159bf1f3830639c33..547f62aa3d78e0fb0b204824e0e7be276805a072 100644 (file)
@@ -1,6 +1,6 @@
 ! Copyright (C) 2010 Slava Pestov.
 USING: gml.types gml.printer gml.runtime math math.constants
 ! Copyright (C) 2010 Slava Pestov.
 USING: gml.types gml.printer gml.runtime math math.constants
-math.functions math.matrices math.order ranges math.trig
+math.functions math.matrices math.order ranges
 math.vectors continuations combinators arrays kernel vectors
 accessors prettyprint fry sequences assocs locals hashtables
 grouping sorting classes.struct math.vectors.simd
 math.vectors continuations combinators arrays kernel vectors
 accessors prettyprint fry sequences assocs locals hashtables
 grouping sorting classes.struct math.vectors.simd
index 320c6d1b13c7d5d11e0a605a7a8fd1f99b1d754d..52732d32b98f20c67697c5c665c250b40f81695b 100644 (file)
@@ -1,6 +1,7 @@
 ! Copyright (C) 2010 Slava Pestov.
 USING: arrays gml.runtime kernel math.matrices
 ! Copyright (C) 2010 Slava Pestov.
 USING: arrays gml.runtime kernel math.matrices
-math.matrices.extras math.trig math.vectors.simd.cords   ;
+math.matrices.extras math.vectors.simd.cords 
+math.functions  ;
 IN: gml.geometry
 
 GML: rot_vec ( v n alpha -- v )
 IN: gml.geometry
 
 GML: rot_vec ( v n alpha -- v )
index 3509eae0115431be21fcd0d3cd2b0b2dbc9831e7..e89d82e5ab50bffc33a6e47546f7ab7932f59dc6 100644 (file)
@@ -8,12 +8,12 @@ ARTICLE: "math.affine-transforms" "Affine Transformations of 2d Vectors"
 { $examples
   "Creates a 45 degree counter clock-wise rotation matrix and applies it to a vector:"
   { $example
 { $examples
   "Creates a 45 degree counter clock-wise rotation matrix and applies it to a vector:"
   { $example
-    "USING: math.affine-transforms math.trig prettyprint ;\n45 deg>rad <rotation> { 0 4 } a.v ."
+    "USING: math.affine-transforms math.functions prettyprint ;\n45 deg>rad <rotation> { 0 4 } a.v ."
     "{ -2.82842712474619 2.82842712474619 }"
   }
   "Applies a combined scaling and translation transform to a vector:"
   { $example
     "{ -2.82842712474619 2.82842712474619 }"
   }
   "Applies a combined scaling and translation transform to a vector:"
   { $example
-    "USING: math.affine-transforms math.trig prettyprint ;\n{ 0 -5 } <translation> 1 2  <scale>  a. { 4 3 } a.v ."
+    "USING: math.affine-transforms math.functions prettyprint ;\n{ 0 -5 } <translation> 1 2  <scale>  a. { 4 3 } a.v ."
     "{ 4.0 1.0 }"
   }
 } ;
     "{ 4.0 1.0 }"
   }
 } ;
index f542c1be15f50741eba7798441b541492c815d54..bfcbeb917d953435f2f21b0157c923ba0bf5aebc 100644 (file)
@@ -2,7 +2,7 @@
 ! See https:!factorcode.org/license.txt for BSD license.
 ! A port of https://github.com/raysan5/raylib/blob/master/examples/models/models_rlgl_solar_system.c
 USING: accessors classes.struct kernel math math.functions
 ! See https:!factorcode.org/license.txt for BSD license.
 ! A port of https://github.com/raysan5/raylib/blob/master/examples/models/models_rlgl_solar_system.c
 USING: accessors classes.struct kernel math math.functions
-math.trig ranges raylib rlgl sequences combinators.extras ;
+ranges raylib rlgl sequences combinators.extras ;
 IN: rlgl.demo
 
 ! Some raylib combinators
 IN: rlgl.demo
 
 ! Some raylib combinators
index f0de9a9e26a0a5e16fbc82f0ead8f7221e0e3219..fe14dcda2c3180ebd93e599759aa41b6d1a2f163 100644 (file)
@@ -1,6 +1,6 @@
 ! Copyright (c) 2012 Anonymous
 ! See https://factorcode.org/license.txt for BSD license.
 ! Copyright (c) 2012 Anonymous
 ! See https://factorcode.org/license.txt for BSD license.
-USING: arrays kernel math math.functions math.trig
+USING: arrays kernel math math.functions
 math.vectors sequences ;
 IN: rosetta-code.haversine-formula
 
 math.vectors sequences ;
 IN: rosetta-code.haversine-formula
 
index ec703c3ac7250ceca88640f17fdb15b94b60b282..b212c4bfd22fb1dc3b21f7bb85b6b11614521a0d 100644 (file)
@@ -1,6 +1,6 @@
 ! (c)2009 Joe Groff, see BSD license
 USING: accessors literals math math.affine-transforms
 ! (c)2009 Joe Groff, see BSD license
 USING: accessors literals math math.affine-transforms
-math.functions math.trig multiline sequences svg tools.test xml
+math.functions multiline sequences svg tools.test xml
 xml.traversal ;
 IN: svg.tests
 
 xml.traversal ;
 IN: svg.tests
 
index 3dfbc243e140b949712b3e0472f3ee303c486459..933d7fa29e96bb1565dfc8f86134f8c91b4e6b8b 100644 (file)
@@ -1,7 +1,7 @@
 ! (c)2009 Joe Groff, see BSD license
 
 USING: accessors arrays assocs kernel math
 ! (c)2009 Joe Groff, see BSD license
 
 USING: accessors arrays assocs kernel math
-math.affine-transforms math.functions math.parser math.trig
+math.affine-transforms math.functions math.parser
 peg.ebnf sequences sequences.squish splitting strings xml.data
 xml.syntax multiline ;
 
 peg.ebnf sequences sequences.squish splitting strings xml.data
 xml.syntax multiline ;
 
index 9651f028811983b586c15a4d21253dec9bd2f854..934e809c25b18748750cbab81f0d5a3422f445fd 100644 (file)
@@ -3,7 +3,7 @@
 USING: accessors arrays combinators combinators.short-circuit
 destructors game.input game.input.scancodes game.loop
 game.worlds grid-meshes grouping kernel literals math
 USING: accessors arrays combinators combinators.short-circuit
 destructors game.input game.input.scancodes game.loop
 game.worlds grid-meshes grouping kernel literals math
-math.functions math.matrices.simd math.order math.trig
+math.functions math.matrices.simd math.order
 math.vectors math.vectors.simd noise opengl
 opengl.capabilities opengl.gl opengl.shaders opengl.textures
 sequences specialized-arrays terrain.generation terrain.shaders
 math.vectors math.vectors.simd noise opengl
 opengl.capabilities opengl.gl opengl.shaders opengl.textures
 sequences specialized-arrays terrain.generation terrain.shaders