전체 글

전체 글

    [UE5] 7 - IK RIG, IK Retargeter

    Mixamo Settings Character Animation Echo IK Rig Create Retarget Root 설정 IK Retargeting Xbot IK Rig Create Retarget Root 설정 IK Retargeting IK Retargeter Xbot, Echo Retargeter

    [C++] 8 - 기초 문법 공부 일지(Stack)

    Stack .LIFO - 후입선출 규칙을 따르는 자료 구조 Stack.h #pragma once #include #include using namespace std; template class Stack { public: voidpush(const T& value) { _container.push_back(value); } voidpop() { vector newVector(_container.size() - 1); for (int i = 0; i < _container.size() - 1; i++) newVector[i] = _container[i]; _container.clear(); _container = newVector; } T&top() { return _container[_container...

    [C++] 7 - 기초 문법 공부 일지(Array)

    Array 연속된 방을 사용할 수 있지만 방을 추가하거나 축소할 수 없음 0 1 2 3 4 5 6 0 1 2 3 4 5 6 0 1 2 3 4 5 6 Array.h #pragma once #include template class Array { public: explicitArray(int capacity = 10) : _capacity(capacity) { _buffer = new T[capacity]; } ~Array() { delete[] _buffer; } voidpush_back(const T& index) { if (_size == _capacity) return; _buffer[_size] = index; _size++; } T&operator[](int index) { assert(index..