Skip to content

Commit

Permalink
oops!
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasmaillo committed Jan 8, 2024
1 parent 6d9cdcf commit 78292a5
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
3 changes: 0 additions & 3 deletions src/Header/Boids.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ interface Boid {
}

const BOID_COUNT = 50
const VIEW_RADIUS = 50
const MAX_SPEED = 5
const SEPARATION_DISTANCE = 50
const ALIGNMENT_RADIUS = 50
Expand Down Expand Up @@ -123,8 +122,6 @@ const Boids: React.FC = () => {

useTick((delta) => {
const newBoids = boids.map((boid) => {
const neighbors = getNeighbors(boid, VIEW_RADIUS)

// Apply behaviors
const sep = separation(boid, getNeighbors(boid, SEPARATION_DISTANCE))
const ali = alignment(boid, getNeighbors(boid, ALIGNMENT_RADIUS))
Expand Down
1 change: 0 additions & 1 deletion src/components/AnimatedTextCharacter.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import React from 'react'
import { motion } from 'framer-motion'

const AnimatedTextCharacter = ({ text }: { text: string }) => {
Expand Down
2 changes: 0 additions & 2 deletions src/components/FlippableCard.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import { motion, useAnimation, useSpring } from 'framer-motion'
import { useState, useRef, useEffect } from 'react'
import styled from 'styled-components'
import AnimatedTextCharacter from './AnimatedTextCharacter'
import { NEXT_MEETUP } from '../constants'
import { NextMeetup } from '../NextMeetup'

const springConfig = {
Expand Down

0 comments on commit 78292a5

Please sign in to comment.