Skip to content

Commit

Permalink
Fix missing imports after renaming packages
Browse files Browse the repository at this point in the history
  • Loading branch information
frauzufall committed Apr 20, 2021
1 parent eb24468 commit c6c823c
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/main/kotlin/graphics/scenery/FullscreenObject.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package graphics.scenery

import graphics.scenery.geometry.GeometryType

/**
*
*
Expand Down
1 change: 1 addition & 0 deletions src/main/kotlin/graphics/scenery/Node.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package graphics.scenery
import graphics.scenery.backends.Renderer
import graphics.scenery.geometry.HasGeometry
import graphics.scenery.utils.LazyLogger
import graphics.scenery.geometry.GeometryType
import graphics.scenery.utils.MaybeIntersects
import graphics.scenery.utils.extensions.*
import kotlinx.coroutines.GlobalScope
Expand Down
1 change: 1 addition & 0 deletions src/main/kotlin/graphics/scenery/VolumeMeasurer.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package graphics.scenery

import graphics.scenery.geometry.GeometryType
import graphics.scenery.utils.LazyLogger
import kotlin.math.absoluteValue

Expand Down
2 changes: 2 additions & 0 deletions src/main/kotlin/graphics/scenery/net/NodePublisher.kt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ import graphics.scenery.primitives.Arrow
import graphics.scenery.primitives.Cylinder
import graphics.scenery.primitives.Line
import graphics.scenery.Mesh
import graphics.scenery.proteins.Protein
import graphics.scenery.proteins.RibbonDiagram
import graphics.scenery.utils.LazyLogger
import graphics.scenery.utils.Statistics
import graphics.scenery.volumes.TransferFunction
Expand Down
2 changes: 2 additions & 0 deletions src/main/kotlin/graphics/scenery/net/NodeSubscriber.kt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ import graphics.scenery.primitives.Arrow
import graphics.scenery.primitives.Cylinder
import graphics.scenery.primitives.Line
import graphics.scenery.Mesh
import graphics.scenery.proteins.Protein
import graphics.scenery.proteins.RibbonDiagram
import graphics.scenery.utils.LazyLogger
import graphics.scenery.utils.Statistics
import graphics.scenery.volumes.TransferFunction
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import graphics.scenery.controls.TrackedStereoGlasses
import graphics.scenery.net.NodePublisher
import graphics.scenery.net.NodeSubscriber
import graphics.scenery.numerics.Random
import graphics.scenery.primitives.Cone
import graphics.scenery.utils.extensions.minus
import graphics.scenery.volumes.Colormap
import graphics.scenery.volumes.TransferFunction
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ import graphics.scenery.*
import graphics.scenery.backends.Renderer
import graphics.scenery.controls.ScreenConfig
import graphics.scenery.numerics.Random
import graphics.scenery.primitives.Plane
import graphics.scenery.primitives.TextBoard
import graphics.scenery.utils.extensions.minus
import graphics.scenery.utils.extensions.plus
import graphics.scenery.volumes.Colormap
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package graphics.scenery.tests.unit

import graphics.scenery.Cylinder
import graphics.scenery.Icosphere
import graphics.scenery.VolumeMeasurer
import graphics.scenery.primitives.Cylinder
import org.junit.Test
import kotlin.test.assertEquals

Expand Down

0 comments on commit c6c823c

Please sign in to comment.