기본 콘텐츠로 건너뛰기

gsjava 발레 바 Barre 동작 순서

<발레 바 Barre 동작 순서>
1.쁠리에 (plie) :구부리다. 접다
*데미 쁠리에(드미 demi-plie) :다리길이의 반을 구부리다. 접다
*그랑 쁠리에(grand-plie): 크게 구부리다. 접다.
2.탄듀 (바뜨망 땅뒤 : battement-tendu)
: 발바닥을 밀어 발끝을 포인하는 동작
3.데가제 degagge (바뜨망 줴떼: battment -jete)
:발바닥을 힘차게 공중으로 밀어 포인하는 동작
4.아 떼르a-terre(롱드쟝 빠떼르:ronde jambe pas a- terre)
:바닥에서 다리로 반 원을 그려주는 동작
5.앙 레르en l'air(롱드쟝 빠 앙레르:ronde jambe pas en l'air)
:공중에서 다리를 돌려주는 동작
6.퐁 듀 fondu (바뜨망 퐁듀 : battement fondu)
:한 쪽 다리를 구부리고 다른 한 쪽 발목에서 시작하여 다리를
들어주는 동작. 부드럽게 녹는듯한 느낌의 동작
*꾸 드 삐에 (cou-de-pied):발목에 다른 발을 대는 동작.
7.쁘띠 바뜨망 & 프라뻬 (petit battement & frappe)
:작게 발목을 두드려주고 한 쪽 다리를 짧게 끊어서차는 동작.
8.아다지오 (adagio)& 데벨로뻬 (develope)
:느린 음악에 맞춰서 꾸드삐에(발목)-빠쎄(무릎)-
애티튜드-아라베스크 순서대로 펼쳐주는 동작
9.그랑 바뜨망 (grand battement)
:크게 몸 밖으로 다리를 차는 동작
*그랑은 크다! 라는 뜻.
10.스트레칭 (stretching) 림바링
:몸을 늘려주고 정리해주는 동작

댓글

이 블로그의 인기 게시물

dmesg 메시지 실시간으로 보기

참조사이트 http://imitator.kr/Linux/556 # tail -f /var/log/messages # tail -f |dmesg //기본 2초 단위로 갱신 된다. # watch "dmesg | tail -f" //1초 단위로 갱신하면서 보여준다. # watch -n 1 "dmesg | tail -f" // 보여주는 줄을 20으로 늘린다. (기본 10줄) # watch -n 1 "dmesg | tail -f -n 20"

java 특정 디렉토리에 있는 파일 목록을 읽어내기, 정렬해서 가져오기

폴더 리스트 가져오기 String path="C:\"; File dirFile=new File(path); File []fileList=dirFile.listFiles(); for(File tempFile : fileList) {   if(tempFile.isFile()) {     String tempPath=tempFile.getParent();     String tempFileName=tempFile.getName();     System.out.println("Path="+tempPath);     System.out.println("FileName="+tempFileName);     /*** Do something withd tempPath and temp FileName ^^; ***/   } } 정렬해서 가져오기 import java.io.FileFilter; import java.io.IOException; import java.util.Arrays; import java.util.Date; import org.apache.commons.io.comparator.LastModifiedFileComparator; import org.apache.commons.io.filefilter.FileFileFilter; public class LastModifiedFileComparatorTest { public static void main(String[] args) throws IOException { File directory = new File("."); // get just files, not directories File[] files = directory.listFiles((FileFilter) FileFileFilter.FILE); System.out.println("Defaul...