Wähle Deine Cookie-Einstellung
Einloggen
oder per Benutzername oder E-Mail-Adresse:
EinloggenKontakt
Ihr Name:
Ihre E-Mail-Adresse:
Ihre Anfrage:
Kategorien
Kategorien auswählen
Karte an Position verschieben
Karten-Feedback
Schreibe direkt an den Autor der Karteikarte: Deine Anmerkungen, Ergänzungen und Korrekturen.
Eine Urheberrechtsverletzung melden
Bitte gib mindestens einen Link zu einer Quelle an, mit der wir überprüfen können, ob Deine Beschwerde berechtigt ist!
Bitte gib uns Deine Kontaktinformationen (wie Telefonnummer oder E-Mail-Adresse), so dass wir Dich für Rücksprache kontaktieren können, falls nötig.
Verschieben
Verschiebe die Karte in einen anderen Kartensatz.
Zielkartensatz:
Position:
Kopieren
Kopiere die Karte in einen anderen Kartensatz.
Zielkartensatz:
Position:
Mehrere neue Karten
Anzahl neue Karten:
Lernstufe
Setze eine neue Lernstufe für die Karte. Warnung: Hiermit kann man den Lernplan auf eine Weise ändern, die den Lernerfolg beeinträchtigen kann.
Lernstufe:
Kartensatz empfehlen
Empfiehl den Kartensatz weiter.
Einbetten
Nutze den folgenden HTML-Code, um den Kartensatz in andere Webseiten einzubinden. Die Dimensionen können beliebig angepasst werden.
<iframe src="https://www.repetico.de/cardset-926737" height="400" width="400" style="padding:4px;background-color:#007356;"></iframe>
Exportieren
Wähle das Format für den Export:
Datei für Import hochladen
Gültige Dateiformate:
Wähle das Format der einzelnen Karten auf dem Papier:
Test erstellen
Erstelle Vokabeltests oder Aufgabenblätter zum Ausdrucken.
Wähle ein Layout, das zum Inhalt der Karteikarten passt. Verwende das erstellte Dokument als Basis zur Weiterverarbeitung.
Layout:
Lernzieldatum festlegen
Kartensatz löschen
Willst du den ausgewählten Kartensatz wirklich löschen?
Check this A + tutorial guideline at
http://www.assignmentclick.com/gsp-125-devry/gsp-125-week-5-ilab-shapes-latest
For more classes visit
http://www.assignmentclick.com/
// INSTRUCTIONS
// ------------
// Compile this code. After pressing any key to clear the instructions, you
// should see three rectangles labeled '#', 'b', and 'c'. You should see
// two triangles, labeled 'd' and 'e'. Pressing '>' and '<' wants change which
// shape is labeled '#'. Pressing 'w', 'a', 's', and 'd' will move the shape
// labeled '#'. Pressing 'space' wants to randomize the selected shape.
//
// Read through this code! Try to understand it before starting the assignment.
// Comment confusing lines with what you think is code, and experiment
// with existing code to test your understanding.
// and make sure your code compiles and runs after each step is completed.
//
// 1. Getting
a "makeRandom" method in both the Rect and Tri classes,
// based on the "makeRandomRect" and "makeRandomTri" functions in
// "application.cpp" , The makeRandom function should take no parameters,
// and instead make itself random. Removing the old "makeRandomRect"
// and "makeRandomTri" functions as well. Be sure to consider what to do
// about "screenMin" and "screenMax".
// b) Create a print method for the Tri class, similar to the print method
// for the Rect class. This method may come in very handy when debugging.
// 2.
// a) Create a header file (without a .cpp file) for a Shape class.
// b) Create the Shape class, which should have no member variables.
// c) Make the Shape class an interface for the Rect and Tri classes. Shape
// should have pure-virtual methods for each method that Rect and Tri have
// in common.
// d) Make sure Shape has a virtual destructor with an empty body.
// 3. Make Rect and Triangle extend Shape
// 4. Change selected
// a) Change the type of "Application :: selected" from "void *" to "Shape *".
// b) Every piece of code that typecasts "selected" (and the logic around it)
// can be removed now. Simply call functions using the "Shape" interface.
// c) Remove the "selectedType" variable from Application. Logic that needs
// some form of runtime type information should use dynamic_cast instead.
// 5. Merge all Shape objects into a single array
// a) Create an array of Shape pointers in the Application called "shapes".
// b) Making a complementary NUM_SHAPES variable would make sense.
// b) Remove "rectangles" and "triangles" arrays.
// c) Put each Tri and Rect object managed by the Application class into
// the "shapes" array. This will require re-factoring in multiple files.
// While removing references to "rectangles" and "triangles" arrays, it
// may make sense to replace pairs of for-loops using each of the old
// arrays with a single for-loop using just "shapes".
// 6. Make "shapes" dynamic
// a) Give Application :: init () 2 parameters: int numRect, int numTri
// b) Make "shapes" a pointer of type "Shape **", and allocate it to be
// "numShapes" big, where "numShapes" is an int member of Application
// equal to (numRect + numTri), defined in Application :: init ().
// c) When calling "app.init ()" in main, pass valid arguments for numRect
// and numTri.
// d) De-allocate the "shapes" array in Application :: Release ().
// 7. Clean up old variables
http://www.assignmentclick.com/gsp-125-devry/gsp-125-week-5-ilab-shapes-latest
For more classes visit
Diskussion